如何在C#中启用命令Response.Write(作为Web应用程序ASP.NET的引用类)

本文关键字:ASP 应用程序 Web NET 引用 作为 启用 Write Response 命令 | 更新日期: 2023-09-27 17:59:45

我想制作如下代码的过程:

void accessBySession(String user, String webqname)
{
  ...
  Response.Write("<script>alert('You can't access this page !');document.location='dashboard.aspx'; </script>  ");
}

我添加了using System.Web;,但命令响应中仍然存在错误(当前上下文中不存在名称"response")。

如何解决这个问题?

如何在C#中启用命令Response.Write(作为Web应用程序ASP.NET的引用类)

尝试完整的命名空间:

System.Web.HttpContext.Current.Response.Write("<script>alert('You can't access this page !');document.location='dashboard.aspx'; </script>)