私は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 ページ用に作成したイベント ハンドラー内からアクセスできます。) アイデアはありますか? 助けてくれてありがとう!