既然你已经用了Button按钮,那么不妨用下面方法实现,比较简单
aspx中:
cs中:
protected void Button1_Click(object sender, EventArgs e)
{
Response.Redirect("add.aspx");//双引号里显示你要跳转的页面
}
aspx中:
cs中:
protected void Button1_Click(object sender, EventArgs e)
{
Response.Redirect("add.aspx");//双引号里显示你要跳转的页面
}