我有一个 HTML 表单,通过登录将我重定向到 aspx 页面:
<form method="post" action="../login.aspx">
如果数据正确,一切正常,但是当数据失败时,我需要显示错误消息,我该怎么做?
在 aspx 页面中,当一切正常时,我有一个重定向,但是当登录失败时,您尝试发出警报并重定向到我的 html 页面,但这不起作用,用户转到 html 页面但未显示警报:
Response.Redirect("~/Users.aspx"); //here everything is ok
}
}
// if the login is wrong
else
{
Response.Write("<script>alert(the login is wrong);</script>");
Response.Redirect(Request.UrlReferrer.ToString());
}