Posts

Showing posts with the label AlwaysVisibleControlExtender AJAX Control

AlwaysVisibleControlExtender AJAX Control

For AlwaysVisibleControlExtender .aspx code is: <asp:Panel ID=”Panel1″ BorderStyle=solid BorderWidth=2 runat=”server” Height=”30px” Width=”30%”    BackColor=yellow BorderColor=red> <strong> <span style=”font-family: Verdana”>Current Time:  </span> </strong> <asp:Label ID=”Label1″ runat=”server” Font-Bold=”True” Font-Names=”Verdana” Font-Size=”10pt” Text=”"> </asp:Label> <a target=”_blank” href=”http://google.com”>Click Me</a> </asp:Panel> <asp:AlwaysVisibleControlExtender ID=”ace” runat=”server”    TargetControlID=”Panel1″ VerticalSide=”Middle”    VerticalOffset=”10″    HorizontalSide=”Right”    HorizontalOffset=”10″     ScrollEffectDuration=”0.1″    /> Javascript Code: <script type=”text/javascript” language=”javascript”> function ShowTime() { var dt = new Date(); document.getElementById(“<%= Label...