Mega Code Archive

 
Categories / ASP.Net / Server
 

Asp server Label

<%@ Page Language="C#" %> <script runat="server">     void Page_Load()     {       time.Text=DateTime.Now.ToString();     } </script> <html> <head> </head> <body>     <form runat="server">        In WebServerLand the time is currently:<asp:Label id="time" runat="server" />      </form> </body> </html>