0
私はResponse.Redirectで簡単なログインページを作成したいと思います。どこが間違っていますか?シンプルなAsp.Netログイン
私はResponse.Redirectで簡単なログインページを作成したいと思います。どこが間違っていますか?シンプルなAsp.Netログイン
最初のifのリスティングの後ろにある必要があります。 2番目以降のセミコロンのほかに、他のものはすべてOKです。
protected void Button1_Click(object sender, EventArgs e) {
if (TextBox1.Text == "customer")
{
if (TextBox2.Text == "password")
Response.Redirect("Customer.aspx");
}
}
うん。それだった! – Bob
@Bobがうれしい – BlazeChill