在ASP.NET中实现弹出日历__教程 |
|
日期:2007-5-20 1:22:58 人气:66 [大 中 小] |
|
|
|
"_pnlCalendar.style.display == \"none\") "+this.ID+ "_pnlCalendar.style.display = \"\"; else "+this.ID+ "_pnlCalendar.style.display = \"none\"; } </script>"); this.Button1.Attributes.Add("OnClick","On"+this.ID+"Click()");
}
#region Web 窗体设计器生成的代码 override protected void OnInit(EventArgs e) { // // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。 // InitializeComponent(); base.OnInit(e); }
/// <summary> /// 设计器支持所需的方法 - 不要使用代码编辑器 /// 修改此方法的内容。 /// </summary> private void InitializeComponent() { this.Calendar1.SelectionChanged += new System.EventHandler(this.Calendar1_SelectionChanged); this.Load += new System.EventHandler(this.Page_Load);
} #endregion
#region 日历选择时的事件 private void Calendar1_SelectionChanged(object sender, System.EventArgs e) { this.TextBox1.Text = Calendar1.SelectedDate.ToShortDateString(); this.pnlCalendar.Attributes.Add("style","DISPLAY: none; POSITION: absolute"); } #endregion } }
|
|
出处:本站原创 作者:佚名 |
|
|