1、Response.Redirect()
2、Server.Transfer()
3、在页面中输出JavaScript语句,强制让客户端跳转
this.Response.Output.WriteLine("<script language=/"javascript/">");
this.Response.Output.WriteLine("parent.window.location=/"" + this.Request.ApplicationPath + "/login.aspx/"");
this.Response.Output.WriteLine("</script>");
博客介绍了在信息技术领域实现页面跳转的方法,包括使用Response.Redirect()、Server.Transfer(),还展示了在页面中输出JavaScript语句,强制让客户端跳转至指定页面如login.aspx的代码示例。
4111

被折叠的 条评论
为什么被折叠?



