Click here to Skip to main content
15,893,588 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to pop up a panel onmouseover of link in asp.net

please help me

Thanx in Advance
Posted

 
Share this answer
 
Comments
soniya sangal 2-Nov-11 6:24am    
thnx
but all links are useless
See this link:
It may help you

http://stackoverflow.com/questions/4704951/popup-on-mouse-enter-and-hide-on-mouseout[^]

(or)

You can use HoverMenuExtender control

see this link: http://www.dotnetcurry.com/ShowArticle.aspx?ID=191[^]

<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>



XML
<cc1:HoverMenuExtender ID="HoverMenuExtender1" PopDelay="100" PopupControlID="DivPopUp1"
                                            PopupPosition="Top" OffsetX="-200" OffsetY="5" TargetControlID="LinkButton1"
                                            runat="server" OnPreRender="HoverMenuExtender1_PreRender">
                                        </cc1:HoverMenuExtender>
 
Share this answer
 
v4
Comments
soniya sangal 2-Nov-11 6:24am    
thnx but all links are useless
soniya sangal 2-Nov-11 6:27am    
whats the work of HoverMenuExtender
soniya sangal 2-Nov-11 6:31am    
giving error

'ASP.index_aspx' does not contain a definition for 'HoverMenuExtender1_PreRender' and no extension method 'HoverMenuExtender1_PreRender' accepting a first argument of type 'ASP.index_aspx' could be found (are you missing a using directive or an assembly reference?)

how can be solve
sravani.v 2-Nov-11 7:16am    
You need to add one line.
See my solution again
Its simply that you need to use onmouseover property of HTML element, through which you intend to capture the popup event.

Check this :

Popup Dialogues in ASP.NET using DIV Tag[^]

Those Crazy Popups[^]

http://www.asp.net/ajax/tutorials/launching-a-modal-popup-window-from-server-code-cs[^]
 
Share this answer
 
v2

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