hello,
I can make alwaysvisiblecontrol clickable ??
that is to say :with a click alwaysvisiblecontrol I should navigate to another page
This way
<asp:ScriptManager ID="ScriptManager1" runat="server"> </asp:ScriptManager> <script type = "text/javascript"> function Redirect() { window.location = "Page2.aspx"; } </script> <asp:Panel ID="Panel1" runat="server" style = "cursor:pointer" onclick = "Redirect()" BorderColor = "Black" BackColor = "Yellow" BorderStyle = "Double" Height = "100" Width = "200"> This is a Always Visible Panel </asp:Panel> <cc1:AlwaysVisibleControlExtender ID = "AlwaysVisibleControlExtender1" runat = "server" VerticalOffset = "100" VerticalSide = "Top" HorizontalOffset = "100" HorizontalSide = "Left" TargetControlID = "Panel1"></cc1:AlwaysVisibleControlExtender>
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.