Click here to Skip to main content
15,904,500 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have asp:DropDownList control which I want to display data to user who don't want to click on it.

But user only want to make Mouse hover over asp:DropDownList Control.

Is there any possible way to make it without using Datalist control or Gridview? If so let me know it please.

Thanks in advance friends.
Posted
Updated 30-Nov-11 1:49am
v2

1 solution

try below code in page_load

For Each lst In ListBox1.Items
lst.Attributes.Add("onmouseover", "tooltip")
Next
 
Share this answer
 
Comments
pawanvats 1-Dec-11 3:49am    
this is not working

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900