今天学习目标:简答题
列举几种实现页面跳转的方法
1.Response.Redirect("URL");但是有缺陷,跳转的页面不能作为新开窗体打开,需要再page_load里面加上this.form1.Target = "_blank"; 2.Response.Write("<script>window.open('ot.aspx','_self');</script>") 2.Response.Write("<script>location.href='ot.aspx';</script>")3.Server.Transfer 4.Sever.Execute