我正在使用 asp.net 编写 Web 应用程序。用户输入他们的凭据,这些凭据将根据实际的电子邮件地址和密码进行验证以进行授权。我编写了一些类来处理这些数据(在单独的 .cs 文件中)。
public static class Login
{
public static void LoginFirstTime(string Email, string Password)
{
//This method logs the user in for the first time after he has registered.
Response.Redirect("UserPage.aspx", true);
//After logging in, the user will be redirected to his personal page.
}
}
但是,我似乎无法从单独的 cs 文件中的 Login 类内部访问 Response.Redirect() 方法。(我可以从我为 aspx 页面编写的事件处理程序内部访问它。)有人知道吗?提前感谢您的帮助!