ajax控制工具箱日历,用于动态生成的文本框
本文关键字:文本 动态 用于 控制 工具箱 日历 ajax | 更新日期: 2023-09-27 18:00:58
我有一个问题。我在c#.net中有30个动态生成的文本框作为表行。我需要为每个文本框提供日历工具。我正在尝试使用ajax日历控件。但它不起作用。你能建议我怎么做吗?还有一些示例代码吗?
如果我想在后面创建一个文本框表单代码,我们只需创建文本框的对象,例如
TextBox txtDate = new TextBox();
txtDate.ID = "txtDate";
phDate.Controls.Add(txtDate); // here phDate is a Place holder on Aspx Page
//Now we need to add a Ajax Calendar Extender at Text Box so we should add Calendar dynamically on the code behind.
AjaxControlToolkit.CalendarExtender calenderDate = new AjaxControlToolkit.CalendarExtender();
calenderDate.ID = "calenderDate";
calenderDate.TargetControlID = "txtDate";
calenderDate.Format = "dd/MM/yyy";
phDate.Controls.Add(calenderDate);]