警告メッセージを読み込まずにこれを実行しようとすると、すぐに homeNew.aspx ページに移動します。しかし、リダイレクトコードが利用できない場合、アラートメッセージが正しくポップアップしています...アラートメッセージに対して「OK」をクリックした後、次のページにリダイレクトする必要があることを意味する両方の機能が必要です..これから克服するのを手伝ってください問題。
if (TextBox2.Text == nic)
{
Response.Write(@"<script language='javascript'>alert('Check your email to retrieve your user name and password!')</script>");
Response.Redirect("homeNew.aspx");
connection.Close();
}
else
{
Response.Write(@"<script language='javascript'>alert('INVALID Email address and NIC combination, Try Again!')</script>");
}