大家好,又见面了,我是你们的朋友全栈君。
返回 打印 |
asp.net(c#)网页跳转七种方法小结_实用技巧_脚本之家
在asp.net下,经常需要页面的跳转,下面是具体的几种方法。跳转页面是大部编辑语言中都会有的,正面我们来分别介绍一下关于.net中response.redirect sever.execute server.transfer 三种页面跳转的方法 ①response.redirect 这个跳转页面的方法跳转的速度不快,因为它要走2个来回(2次 postback),但他可以跳 转到任何页面,没有站点页面限制(即可以由雅虎跳到新浪),同时不能跳过登录保护。但速度慢是其最大缺陷!redirect跳转机制:首先是发送一个 http请求到客户端,通知需要跳转到新页面,然后客户端在发送跳转请求到服务器端。需要注意的是跳转后内部空间保存的所有数据信息将会丢失,所以需要用 到session。 实例 Example that uses Redirect [C#; ASP.NET] using System; using System.Web.UI; namespace WebApplication1 { public partial class List : Page { protected void Page_Load(object sender, EventArgs e) { // Get response. var response = base.Response; // Redirect temporarily. // … Don’t throw an HttpException to terminate. response.Redirect(“http://www.jb51.net”, false); } } } Result of the page HTTP/1.1 302 Found Content-Type: text/html; charset=utf-8 Location: http://www.jb51.net Server: Microsoft-IIS/7.0 Date: Fri, 13 Aug 2010 21:18:34 GMT Content-Length: 144 <html><head><title>Object moved</title></head><body> <h2>Object moved to <a href=”http://www.dotnetperls.com/list”>here</a>.</h2> </body></html> private void Button1_Click (object sender, System.EventArgs e) { Server.Transfer(“webform2.aspx”); } 4、创建过程来返回TextBox1,TextBox2控件的值代码如下: public string Name { get { return TextBox1.Text; } } public string EMail { get { return TextBox2.Text; } } 5、新建一个目标页面命名为webform2 private void Page_Load (object sender, System.EventArgs e) { //创建原始窗体的实例 WebForm1 wf1; //获得实例化的句柄 wf1=(WebForm1)Context.Handler; Label1.Text=wf1.Name; Label2.Text=wf1.EMail; } <%@ Page Language=”C#” AutoEventWireup=”true” CodeFile=”WebForm1.aspx.cs” Inherits=”WebForm1″ %> <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”> <html xmlns=”http://www.w3.org/1999/xhtml”> <head runat=”server”> <title></title> </head> <body> <form id=”form1″ runat=”server”> <div> <asp:TextBox ID=”TextBox1″ runat=”server”></asp:TextBox><br /> <asp:Button ID=”Button1″ runat=”server” Text=”Button” οnclick=”Button1_Click” /> </div> </form> </body> </html> .net代码 using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public partial class WebForm1 : System.Web.UI.Page { public string Time { get { return DateTime.Now.ToString(); } } public string TestFun() { return “Function of WebForm1 Called”; } protected void Page_Load(object sender, EventArgs e) { Context.Items.Add(“Context”, “Context from Form1”); } protected void Button1_Click(object sender, EventArgs e) { //this.TextBox2.Text =Request [“TextBox1”].ToString (); Server.Transfer(“WebForm2.aspx”, true);//第二个参数为false时,WebForm2.aspx中不能获得TextBox1的内容 } } 来源于脚本之家:http://www.jb51.net/article/21046.htm |
转载于:https://www.cnblogs.com/YiZhiZaiNvLi/p/4701265.html
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/162037.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...