0

私は自分の ASP.NET Web サイトをコーディングしています。この質問があります。認証の場合、ユーザーはどちらが優れているのですか?

        if ((UserEmail.Text == "oli@yahoo.com") &&
    (UserPass.Text == "1"))
    {

        FormsAuthentication.RedirectFromLoginPage
           (UserEmail.Text, Persist.Checked);
          Response.Redirect("profile.aspx");

    }
    else
    {
        Msg.Text = "Invalid credentials. Please try again.";
    }

また

        if ((UserEmail.Text == "oli@yahoo.com") &&
    (UserPass.Text == "1"))
    {

        Session["ID"]=UserEmail.Text;
          Response.Redirect("profile.aspx");

    }
    else
    {
        Msg.Text = "Invalid credentials. Please try again.";
    }

正しいフォームを選択するのを手伝ってください。

4

1 に答える 1