Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.63 KB | None | 0 0
  1. <%--Title: Welcome4.aspx --%>
  2. <%--Date: April 23, 2019 --%>
  3. <%@ Page Language="C#" Inherits="Time" src="Welcome3.aspx.cs" %>
  4.  
  5. <!DOCTYPE html>
  6.  
  7. <html>
  8.  
  9. <head runat="server">
  10.     <title>Welcome to ASP.NET!</title>
  11. </head>
  12.  
  13. <body>
  14.     <h1>Welcome to ASP.NET</h1>
  15.     <h1>using C#</h1>
  16.     <form id="form1" runat="server">
  17.         <p>The date and time is
  18.             <asp:Label ID="lblTime" runat="server"></asp:Label>
  19.         </p>
  20.        
  21.         <p>
  22.             <asp:TextBox ID="txtMsg" runat="server"></asp:TextBox>
  23.         </p>
  24.        
  25.         <p>
  26.             <asp:Button ID="btnClick" text="Click" runat="server"
  27.                 OnClick="btnClick_Click">
  28.             </asp:Button>
  29.         </p>
  30.     </form>
  31. </body>
  32.  
  33. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement