asp.net点击添加按钮页面跳转到,另一个添加数据的页面,代码怎么写?我要跳转到add页面

2024-12-17 13:32:19
推荐回答(2个)
回答1:

既然你已经用了Button按钮,那么不妨用下面方法实现,比较简单
aspx中:

cs中:
protected void Button1_Click(object sender, EventArgs e)
{
Response.Redirect("add.aspx");//双引号里显示你要跳转的页面
}

回答2:

aspx中:

cs中:
protected void Button1_Click(object sender, EventArgs e)
{
Response.Redirect("add.aspx");//双引号里显示你要跳转的页面
}