C#按钮实现网页跳转?

2024-12-30 00:26:32
推荐回答(5个)
回答1:

C# 代码

//按钮事件
public void Button1_Click(object sender,EventAge e)
{
Response.Redirect("a.aspx");
}

回答2:

Response.Redirect("**.aspx");
双击按钮进去,在Click事件里面写上这,就可以跳转了

回答3:

response对象的重定向和sendURL都可以的,senddirect(URL),在click事件里加上就可以了

回答4:

尽量的用连接,不用提交服务器的。就别提交了。

回答5:

1.window.open(url); //打开新的页面
2.window.location.href = url; //页面跳转
3.window.showModalDialog(url); //弹出模态对话框