方法一:Response.Redirect("网页");
方法二:Server.Transfer("网页");
方法三:超链接。(服务器控件中的HyperLink,HTML中的<a href=""></a>)
方法四:PostBackUrl(将控件的属性改为具体的网址。)
方法五:JavaScript转向。
document.location.href='';
top.location.href="";
parent.location.href='';
方法五:表单Form提交时,action属性改为具体的网址。
方法六:flash(具体没有用过,但是可以转向网页。)
方法七:HTML转向。
<meta refresh="3;url= ">
如有错误,请指正,谢谢。O(∩_∩)O~