gpt4 book ai didi

c# - 如何从我的自定义 C# 类调用 response.redirect

转载 作者:太空狗 更新时间:2023-10-29 17:31:35 27 4
gpt4 key购买 nike

我正在使用 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 文件中的登录类内部访问 Response.Redirect() 方法。 (我可以从我为 aspx 页面编写的事件处理程序内部访问它。)有人有想法吗?预先感谢您的帮助!

最佳答案

尝试使用完整的命名空间:

public static void LoginFirstTime(string Email, string Password)
{
//This method logs the user in for the first time after he has registered.
HttpContext.Current.Response.Redirect("UserPage.aspx", true);
//After logging in, the user will be redirected to his personal page.
}

关于c# - 如何从我的自定义 C# 类调用 response.redirect,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19612462/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com