我想在页面加载时调用Bootstrap Modal From代码。我使用下面的代码,但它会抛出编译错误
ClientScript.RegisterStartupScript(this.GetType(), "alert", "ShowRegPopup();", true);
错误:未声明“ClientScript”。由于其保护级别,它可能无法访问。
答案 0 :(得分:-1)
您需要将其更改为使用Page
Page.ClientScript.RegisterStartupScript(this.GetType(), "alert", "ShowRegPopup();", true);