ASP.NET_在网页上打印当前时间

//html页面代码

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>


<%--VS2013版本   支持:HTML5--%>






   


   

   

  
        //添加一个Label 控件

   

   


===========================================================================

//

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;   //系统默认的命名空间


public partial class _Default : System.Web.UI.Page
{
   ///


    /// 加载数据    protected
   ///


    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack) { GetTime(); } //IsPostBack判断程序是否是首次加载

    }


    ///
    /// 具体返回值的方法
    ///


    public int Num(int a, int b)

     {

         return a + b; 

    }


    ///
    /// 获取本地时间,并赋给Label
    ///

    public void GetTime() 
    {
        this.labTime.Text = System.DateTime.Now.ToString();
    }

}

你可能感兴趣的:(ASP.NET)