1

我想使用 cs 代码在 aspx 页面中使用 datetimepicker。但我必须在 cs 中动态创建它。我通常使用 jquery,但可以接受其他解决方案。

4

1 回答 1

3

您可以动态创建将 jquery 脚本附加到控件的脚本:

string csname1 = "BindDatePickerScript";
Type cstype = this.GetType();

// Get a ClientScriptManager reference from the Page class.
ClientScriptManager cs = Page.ClientScript;
// Check to see if the startup script is already registered.
if (!cs.IsStartupScriptRegistered(cstype, csname1))
{
System.Text.StringBuilder cstext1 = new System.Text.StringBuilder();
cstext1.Append("<script type='text/javascript'>");
cstext1.Append("Your Script");
cstext1.Append("});");
cstext1.Append("</");
cstext1.Append("script>");

cs.RegisterStartupScript(cstype, csname1, cstext1.ToString());
}

该脚本被添加到 HTML 呈现页面的底部。

于 2012-04-24T13:02:57.403 回答