我正在使用asp.net編寫web應用程序。用戶輸入他們的憑證,並根據實際的電子郵件地址和密碼進行驗證以進行授權。我寫了一些類來處理這些數據(在一個單獨的.cs文件中)。如何從我的自定義c#類中調用response.redirect
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頁面編寫的事件處理程序中訪問它)。有沒有人有想法?預先感謝您的幫助!
您需要將@ IrishChieftain的帖子標記爲答案。 –