做了一个注册页面,怎样让它注册完后提示一下就返回首页?附代码。
怎样让它注册完后提示一下就返回首页?代码如下:
private void Button1_Click(object sender, System.EventArgs e)
{
SqlConnection myConnection=new SqlConnection("server=localhost;uid=sa;pwd=123456;database=05xguan");
string strSQL="insert into 信管 (姓名,性别,学号,密码,电话,简历,籍贯) values('"+TextBox4.Text+"','"+ss+"','"+TextBox1.Text+"','"+TextBox3.Text+"','"+TextBox6.Text+"','"+TextBox7.Text+"','"+TextBox8.Text+"')";
try
{
myConnection.Open();
SqlCommand mySqlCommand=new SqlCommand(strSQL,myConnection);
mySqlCommand.ExecuteNonQuery();
Response.Write("<script language='javascript'>alert('注册成功')</script>");
/*需要在这里加什么代码??*/
}
catch
{
Response.Write("<script language='javascript'>alert('数据库连接失败')</script>");
}
finally
{
myConnection.Close();
}
}
我希望的效果是如果注册成功了,它弹出了“注册成功”字样,你按“确定”之后,它就返回我想要的页面。我是新手,你的帮忙我不胜感激