我有一个问题。我有30个动态生成的文本框作为c#.net中的表行。对于他们每个人我需要提供日历工具。我正在尝试使用ajax日历控件。但它不起作用。你建议我怎么做以及一些示例代码?
答案 0 :(得分:4)
如果我想在后面创建一个文本框表单代码,我们可以简单地创建一个Text Box对象,例如
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);]