62,267
社区成员
发帖
与我相关
我的任务
分享 String csname1 = "PopupScript1";
Type cstype = this.GetType();
ClientScriptManager cs = Page.ClientScript;
if (!cs.IsStartupScriptRegistered(cstype, csname1))
{
String cstext1 = "alert('用户或密码不正确!');";
cs.RegisterStartupScript(cstype, csname1, cstext1, true);
}