stavros-s
6/15/2013 - 2:04 PM

ASP.NET page sample.

ASP.NET page sample.


<%@ Page 

  Language="C#" 

%>



    <!DOCTYPE 
      
      html 
      
      PUBLIC 

      "---//W3C//DTD XHTML 1.0  //EN"

      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"

    >



    <script runat="server">
  
        protected void Page_Load
          (object sender, EventArgs e)  
        {

            // Assign the datetime to label control
    
            lbl1.Text = DateTime.Now.ToLongTimeString();
    
            lbl.Text = Ahmad();
    
            lbl1.Text = DateTime.Now.ToShortTimeString();    
  
        }

    </script>
 


    <html xmlns="http://www.w3.org/1999/xhtml">

        
      <head runat="server">
  

        <title>
          Sample page
        </title>

      </head>


    <body>


        <form 

          id="form1" 
          runat="server"
        
        >
 
      

        ===== Code-behind solutions =====

        <source lang="asp">

          <%@ Page

            Language="C#" 
      
            CodeFile="SampleCodeBehind.aspx.cs" 

            Inherits="Website.SampleCodeBehind"

            AutoEventWireup="true" 

          %>