服务器端调用客户端脚本

 

String csname1 = "PopupScript";
Type cstype = this.GetType();

ClientScriptManager cs = Page.ClientScript;
if (!cs.IsStartupScriptRegistered(cstype, csname1))
{
        cs.RegisterStartupScript(cstype, csname1, "客户端脚本", true);
}

你可能感兴趣的:(String,服务器,脚本)