Hi,
Below is the Code why it's working like in Internet Explorer.
<body>
<form id="form1" runat="server">
<div>
<cc1:ToolkitScriptManager ID="Sc1" runat="server">
</cc1:ToolkitScriptManager>
<asp:PlaceHolder ID="pl" runat="server">
<table>
<tr>
<td>
<asp:UpdatePanel ID="uppnl" runat="server">
<ContentTemplate>
<table>
<tr>
<td style="width:100%">
<asp:Label ID="lblMsg" runat="server" Text="Click Me!!"
ForeColor="Blue" Font-Underline="True" >
</asp:Label>
<asp:Panel ID="Pn1" runat="server" BorderColor="Red" BorderWidth="2">
<asp:Label ID="lblPopUp" runat="server"
Text ="" >
</asp:Label>
</asp:Panel>
<cc1:HoverMenuExtender ID="HoverMenuExtender1" runat="server"
TargetControlID="lblMsg" PopupControlID="Pn1"
PopupPosition="Right" OffsetX="20" OffsetY="20">
</cc1:HoverMenuExtender>
</td>
<td>
</td>
</tr>
</table>
</ContentTemplate>
</asp:UpdatePanel>
</td>
</tr>
</table>
</asp:PlaceHolder>
</div>
</form>
</body>
In .aspx.cs File:
protected void Page_Load(object sender, EventArgs e)
{
if(IsPostBack!=true)
{
lblPopUp.Text = "Hai Hello, how r u!!!!!!";
}
}
First Time the Page Loads the hover showing different and second time when you put mouse it's showing perfect.
Why it's hover different when first time the page loads .
Please help me.
Thanks,