Guest User

Untitled

a guest
Jan 18th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <div id="divResultados" runat="Server" visible="true">
  2. <asp:TextBox ID="firstName" runat="server"></asp:TextBox>
  3. <asp:TextBox ID="lastName" runat="server"></asp:TextBox>
  4. <asp:Calendar ID="calDOB" runat="server"></asp:Calendar>
  5. <asp:Button ID="Button1" runat="server" OnClientClick="return Message()" onclick="Button1_Click" Text="Button" />
  6. </div>
  7.  
  8. $(function(){
  9. $("#<%=Button1.ClientID%>").on("click", function(){
  10. $("#<%=calDOB.ClientID%>").hide();
  11. });
  12. });
  13.  
  14. calDOB.Visible = false;
Add Comment
Please, Sign In to add comment