主頁 > 知識(shí)庫 > 三種asp.net頁面跳轉(zhuǎn)的方法

三種asp.net頁面跳轉(zhuǎn)的方法

熱門標(biāo)簽:代理接電話機(jī)器人如何取消 地圖定位圖標(biāo)標(biāo)注 400電話辦理哪家性價(jià)比高 天心智能電銷機(jī)器人 濮陽外呼電銷系統(tǒng)怎么樣 地圖標(biāo)注專業(yè)團(tuán)隊(duì) 地圖標(biāo)注的公司有哪些 塔城代理外呼系統(tǒng) 遂寧市地圖標(biāo)注app

本文實(shí)例為大家分享了asp.net頁面跳轉(zhuǎn)的三種方法,供大家參考,具體內(nèi)容如下

第一種方法:response.redirect

這個(gè)跳轉(zhuǎn)頁面的方法跳轉(zhuǎn)的速度不快,因?yàn)樗?個(gè)來回(2次postback),但它可以跳轉(zhuǎn)到任何頁面,沒有站點(diǎn)頁面限制(即可以由雅虎跳到新浪),同時(shí)不能跳過登錄保護(hù)。但速度慢是其最大缺陷!redirect跳轉(zhuǎn)機(jī)制:首先是發(fā)送一個(gè)http請(qǐng)求到客戶端,通知需要跳轉(zhuǎn)到新頁面,然后客戶端在發(fā)送跳轉(zhuǎn)請(qǐng)求到服務(wù)器端。需要注意的是跳轉(zhuǎn)后內(nèi)部空間保存的所有數(shù)據(jù)信息將會(huì)丟失,所以需要用到session。

代碼如下 

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);
 }
 }
}

代碼如下 

HTTP/1.1 302 Found
Content-Type: text/html; charset=utf-8
Location: //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=//www.jb51.net/list/index_1.htm>here/a>./h2>
/body>

/html>

第二種方法sever.execute

這個(gè)方法主要是用在頁面設(shè)計(jì)上面,而且他必須是跳轉(zhuǎn)同一站點(diǎn)下的頁面。這個(gè)方法是需要將一個(gè)頁面的輸出結(jié)果插入到另一個(gè)aspx頁面的時(shí)候使用,大部分是在表格中,將某一個(gè)頁面類似于嵌套的方式存在于另一頁面。

舉個(gè)例子看看:

1、創(chuàng)建一個(gè)web form
2、在新建的web form中放置一個(gè)button1,在放置兩個(gè)TextBox1,TextBox2
3、為button按鈕創(chuàng)建click事件

代碼如下

private void Button1_Click
(object sender, System.EventArgs e)
{
Server.Transfer("webform2.aspx");
}

4、創(chuàng)建過程來返回TextBox1,TextBox2控件的值代碼如下:

代碼如下

public string Name
{
get
{
 return TextBox1.Text;
}
}
public string EMail
{
get
{
 return TextBox2.Text;
}
}

5、新建一個(gè)目標(biāo)頁面命名為webform2
6、在webform2中放置兩個(gè)Label1,Label2

在webform2的Page_Load中添加如下代碼:

代碼如下

private void Page_Load
(object sender, System.EventArgs e)
{
//創(chuàng)建原始窗體的實(shí)例
WebForm1 wf1;
//獲得實(shí)例化的句柄
wf1=(WebForm1)Context.Handler;
Label1.Text=wf1.Name;
Label2.Text=wf1.EMail;
}

第三種方法:server.transfer

速度快,只需要一次postback ,但是它必須是在同一個(gè)站點(diǎn)下,因?yàn)樗莝erver的一個(gè)方法。另外,他能跳過登錄保護(hù)。你可以寫個(gè)小程序試試:設(shè)計(jì)一個(gè)由頁面一到頁面二的跳轉(zhuǎn),但要進(jìn)入到頁面二需要登錄,form認(rèn)證,但如果跳轉(zhuǎn)語句使用transfer的話,那就不會(huì)彈出登錄頁面了。這個(gè)方法的重定向請(qǐng)求是發(fā)生在服務(wù)器端,所以瀏覽器的url地址仍然保留的是原頁面的地址!

代碼如下

%@ 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" onclick="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);//第二個(gè)參數(shù)為false時(shí),WebForm2.aspx中不能獲得TextBox1的內(nèi)容
  
 }
}

如果要捕獲一個(gè)ASPX頁面的輸出結(jié)果,然后將結(jié)果插入另一個(gè)ASPX頁面的特定位置,則使用Server.Execute。
·如果要確保HTML輸出合法,請(qǐng)使用Response.Redirect,因?yàn)镾erver.Execute 或者Server.Transfer方法返回給客戶端的頁面包含多個(gè)Html>body>標(biāo)記,不是合法的HTML頁面,在非IE瀏覽器中可能會(huì)發(fā)生錯(cuò)誤。

以上就三種asp.net頁面跳轉(zhuǎn)的方法,希望對(duì)大家的學(xué)習(xí)有所幫助。

您可能感興趣的文章:
  • Asp.net SignalR創(chuàng)建實(shí)時(shí)聊天應(yīng)用程序
  • Asp.NET MVC中使用SignalR實(shí)現(xiàn)推送功能
  • asp.net mvc signalr簡(jiǎn)單聊天室制作過程分析
  • Asp.net使用SignalR實(shí)現(xiàn)消息提醒
  • Asp.net SignalR支持的平臺(tái)有哪些
  • Asp.net使用SignalR實(shí)現(xiàn)發(fā)送圖片
  • ASP.net實(shí)現(xiàn)頁面跳轉(zhuǎn)的方法
  • ASP.NET筆記之頁面跳轉(zhuǎn)、調(diào)試、form表單、viewstate、cookie的使用說明
  • 新發(fā)現(xiàn)原來documenet.URL也可以實(shí)現(xiàn)頁面跳轉(zhuǎn)
  • SignalR發(fā)送頁面跳轉(zhuǎn)通知的方法

標(biāo)簽:本溪 宜春 重慶 麗江 吉林 河南 婁底 汕頭

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《三種asp.net頁面跳轉(zhuǎn)的方法》,本文關(guān)鍵詞  三種,asp.net,頁面,跳轉(zhuǎn),的,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《三種asp.net頁面跳轉(zhuǎn)的方法》相關(guān)的同類信息!
  • 本頁收集關(guān)于三種asp.net頁面跳轉(zhuǎn)的方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章