Click here to Skip to main content
15,892,298 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hello ,
I want help (in ASP.NET-C#) to doing dialogue box (for example : show to photo in following link) include data from database, such as that show when pass mouse cursor on link or textbox



http://youstudyuk.co.uk/img/box.jpg[^]


please help meeeee
Posted
Updated 15-Jan-13 3:30am
v3
Comments
Sandeep Mewara 15-Jan-13 13:55pm    
And what have you tried so far?

Well I didn't get your question properly.
But what I believe, You want to Pop-up a Panel/any control whenever your mouse pointer is over a control.

So if I'm right, then Use "HoverMenuExtender" control of Ajax Control Toolkit.
You can retrieve data from database also.

If you don't know how to use this Extender Control, then simply Refer Official asp.net Forum, where you can find Ajax Control Guides.

Hope This would help you.
Still any doubt feel free to ask.
 
Share this answer
 
v4
Well your question is bit confusing. Because there are some controls are already available in order to achieve the same.

But if you don't want to use any server side controls then you can do it using client side javascript or jquery.

Please review the link below to check if the following requirement matches with your requirement

http://jqueryfordesigners.com/demo/coda-bubble.html[^]
 
Share this answer
 
Thanks my frindes ....

This is my try :

HTML
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>


<style type="text/css">
.pnl
{
    background-color:#CFCFCF;
    border:1px solid #CECECE;
    color:#CF0000;
}
</style> 

</head>
<body>
 
    <form id="form1" runat="server">
    <cc1:toolkitscriptmanager id="ToolkitScriptManager1" runat="server" xmlns:cc1="#unknown">
    </cc1:toolkitscriptmanager>
    <div>
        <asp:panel id="Panel1" runat="server" cssclass="pnl" width="256px" xmlns:asp="#unknown">

            <input type="button" value="button2" id="btn2" />
            

        </asp:panel>
        <cc1:hovermenuextender id="HoverMenuExtender1" runat="server" behaviorid="hmeBehaviour" xmlns:cc1="#unknown">
            PopupPosition="Bottom" TargetControlID="LinkButton1" PopupControlID="Panel1">
        </cc1:hovermenuextender>
        <asp:linkbutton id="LinkButton1" runat="server" xmlns:asp="#unknown">LinkButton</asp:linkbutton>
    </div>
    </form> 
</body>
</html>
 
Share this answer
 

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