1、<a>标签
示例代码:<a href=”a.aspx”>
2、HyperLink控件
通过HyperLink控件的NavigateUrl属性。
3、Response.Redirect()方法
会请求两个地址。
4、Server.Transfer()方法
只有一次请求,服务器内部实现跳转,并且不返回跳转前的页面。
5、Server.Execute()方法
只有一次请求,服务器内部实现跳转,执行完跳转后的页面返回原页面继续执行。
6、window.location.href=””;