C#类库中不能使用ScriptManager,求助
类库中函数如下
public static void CurErr(Control ctr, string Msg)
{
ScriptManager.RegisterStartupScript(ctr, ctr.GetType(), ctr.ID, "alert('" + Msg + "');", true);
}
报上下文中不存在"ScriptManager",请指导,谢谢。
------解决方案--------------------你确定是asp.net 4.0网站么?
------解决方案--------------------ScriptManagers是注册脚本的。
命名空间 System.Web.UI 你类库中怎么用?
------解决方案-------------------- ClientScript.RegisterStartupScript(this.GetType(), "NoData", "alert(\"找不到符合条件的学生!\");window.close();", true);
------解决方案--------------------Ctrl+. 会有提示吧
------解决方案--------------------类库中要添加引用 System.Web.UI