Guest User

Untitled

a guest
Jun 14th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <%@ Control Language="C#" AutoEventWireup="true" CodeFile="FadingMessage.ascx.cs" Inherits="includes_FadingMessage" %>
  2.  
  3. <asp:PlaceHolder Visible="false" runat="server" ID="plhMain">
  4. <span id="<%= this.ClientID+"_panel" %>" style="background-color:yellow; padding:10px;">
  5. <b><%= Message %></b>
  6. </span>
  7.  
  8. <script type="text/javascript" language="javascript">
  9.  
  10. $(document).ready(function() {
  11. alert("never gets here??");
  12. jQuery('#<%= this.ClientID+"_panel" %>').fadeOut(1000);
  13. });
  14.  
  15. </script>
  16.  
  17. </asp:PlaceHolder>
Add Comment
Please, Sign In to add comment