在page_load中设断点,根本就不执行。
private void Page_Load(object sender, System.EventArgs e)
{
txtOrdertime.Text=DateTime.Now.ToShortDateString();
}
#region Web 窗体设计器生成的代码
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
//
InitializeComponent();
base.OnInit(e);
}
/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.BtnAdd.Click += new System.EventHandler(this.BtnAdd_Click);
this.Load += new System.EventHandler(this.Page_Load);
}
#endregion