PDA

View Full Version : hovering with table


sriraj.kundan
01-20-2009, 01:17 PM
hello
i want to conert the un ordered list items to table and do the hovering in asp.net .

could u plz help me out in this regard

this is my code

it is a .ascx control where i placed my code


<%@ Control Language="C#" AutoEventWireup="true" CodeFile="MenuBar.ascx.cs" Inherits="UserControl_MenuBar" %>
<div id="MasterPageMenu">
<%--<ul id="sddm">
<li><a href="#" onmouseover="mopen('m1')" onmouseout="mclosetime()">Lists</a>
<div id="m1" onmouseover="mcancelclosetime()" onmouseout="mclosetime()">
<a href="ExceptionList.aspx">Exception Lists</a> <a href="ProcessingRules.aspx">Comp
Processing Rules</a><a href="CompUniverse.aspx">Comp
Universe</a>
</div>
</li>
<li>
<img src="../../images/masterpage/seperator.jpg" alt="" class="seperator_modified" /></li>
<li><a href="#" onmouseover="mopen('m2')" onmouseout="mclosetime()">Rules</a>
<div id="m2" onmouseover="mcancelclosetime()" onmouseout="mclosetime()">
<a href="RuleList.aspx">View Rules</a> <a href="RuleProcess.aspx">Create Rule</a><a href="Reports.aspx">Reports</a>
</div>
</li>
<li>
<img src="../../images/masterpage/seperator.jpg" alt="" class="seperator_modified" /></li>
<li><a href="#">Help</a></li>
</ul>


Thanks in advance

kundan

SouthwaterDave
01-25-2009, 06:21 PM
You have already coded the HTML and JavaScript to provide the user experience you desire. What are you expecting ASP.NET to do for you, that you have not already done?