溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

讓Response.Redirect在新窗口打開的方法有哪些

發(fā)布時(shí)間:2021-10-09 09:43:27 來源:億速云 閱讀:159 作者:iii 欄目:開發(fā)技術(shù)

本篇內(nèi)容介紹了“讓Response.Redirect在新窗口打開的方法有哪些”的有關(guān)知識(shí),在實(shí)際案例的操作過程中,不少人都會(huì)遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

Response.Rederect在默認(rèn)情況下是在本頁(yè)跳轉(zhuǎn),所以除了在js中用window.open或是給A標(biāo)簽添加target屬性之外,在后臺(tái)似乎不能來打開新的頁(yè)面,其實(shí)不然,通過設(shè)置form的target屬性同樣可以讓Response.Rederect所指向的url在新的窗口打開。下面用三種方法來實(shí)現(xiàn)。

1 .給form指定target屬性,那么本頁(yè)面中所有的Response.Rederect都將在新的窗口中打開。代碼如下:

復(fù)制代碼 代碼如下:

protected void Page_Load(object sender, EventArgs e)
{
form1.Target = "_blank";
}

<form id="form2" runat="server" target="_blank">


2 .用腳本針對(duì)某個(gè)控件來指定form的target,代碼如下:

html代碼:

復(fù)制代碼 代碼如下:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="ResponseRedirectDemo._Default" %>

<!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 id="Head1" runat="server">
<title>ResponseRedirectDemo</title>
</head>
<body>
<form id="form2" runat="server" target="_blank">
<div>
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click"
Text="OpenNewWindow"/>
<asp:Button ID="Button2" runat="server" OnClick="Button2_Click"
Text="OpenOldWindow" />
</div>
</form>
</body>
</html>

C#代碼:
[code]
namespace ResponseRedirectDemo
{
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Button1.Attributes.Add("onclick", "this.form.target='_blank'");
Button2.Attributes.Add("onclick", "this.form.target=''");
}

protected void Button1_Click(object sender, EventArgs e)
{
Response.Redirect("http://oec2003.cnblogs.com");
}

protected void Button2_Click(object sender, EventArgs e)
{
Response.Redirect("http://oec2003.cnblogs.com");
}
}
}


上面的代碼中點(diǎn)擊button1在新窗口打開,點(diǎn)擊button2在本頁(yè)打開。

3 .除了設(shè)置form的target屬性,要在新的窗口打開頁(yè)面就只能用open,可以寫個(gè)通用的方法來實(shí)現(xiàn),如下:

復(fù)制代碼 代碼如下:

public class RedirectHelper
{
public static void Redirect(string url,
string target, string windowFeatures)
{
HttpContext context = HttpContext.Current;
if ((String.IsNullOrEmpty(target) ||
target.Equals("_self", StringComparison.OrdinalIgnoreCase)) &&
String.IsNullOrEmpty(windowFeatures))
{
context.Response.Redirect(url);
}
else
{
Page page = (Page)context.Handler;
if (page == null)
{
throw new
InvalidOperationException("Cannot redirect to new window.");
}
url = page.ResolveClientUrl(url);
string script;
if (!String.IsNullOrEmpty(windowFeatures))
{
script = @"window.open(""{0}"", ""{1}"", ""{2}"");";
}
else
{
script = @"window.open(""{0}"", ""{1}"");";
}
script = String.Format(script, url, target, windowFeatures);
page.ClientScript.RegisterStartupScript(page.GetType(),
"Redirect", script, true);
} } }


這樣就可以在程序中使用RedirectHelper.Redirect("oec2003.aspx", "_blank", "");第三個(gè)參數(shù)為open窗口的一些屬性。但這樣好像還不是很方便,在.net3.5中提供了擴(kuò)展方法的特性,在這里也可以借用一下,將上面的靜態(tài)方法實(shí)現(xiàn)為Response.Redirect的一個(gè)重載。具體代碼如下:

復(fù)制代碼 代碼如下:


public static class RedirectHelper
{
public static void Redirect(this HttpResponse response,
string url, string target, string windowFeatures)
{
if ((String.IsNullOrEmpty(target) ||
target.Equals("_self", StringComparison.OrdinalIgnoreCase)) &&
String.IsNullOrEmpty(windowFeatures))
{
response.Redirect(url);
}
else
{
Page page = (Page)HttpContext.Current.Handler; if (page == null)
{
throw new
InvalidOperationException("Cannot redirect to new window .");
}
url = page.ResolveClientUrl(url);
string script;
if (!String.IsNullOrEmpty(windowFeatures))
{
script = @"window.open(""{0}"", ""{1}"", ""{2}"");";
}
else
{
script = @"window.open(""{0}"", ""{1}"");";
}
script = String.Format(script, url, target, windowFeatures);
ScriptManager.RegisterStartupScript(page,
typeof(Page), "Redirect", script, true);
}
}
}


將該類添加到項(xiàng)目中后,在程序中輸入Response.Redirect會(huì)發(fā)現(xiàn)該方法有三個(gè)重載了,這樣再結(jié)合前面的form的target 就非常方便了。

另外:

Respose.Write("<script language='javascript'>window.open('"+ url +"');</script>"); (打開簡(jiǎn)潔窗口):
Respose.Write("<script language='javascript'>window.open('" + url + "','','resizable=1,scrollbars=0,status=1,menubar=no,toolbar=no,location=no, menu=no');</script>");

1. Response.Redirect("XXX.aspx",true)——直接轉(zhuǎn)向新的頁(yè)面,原窗口被代替;
2. Response.Write("<script>window.open('XXX.aspx','_blank')</script>")——原窗口保留,另外新增一個(gè)新頁(yè)面;
3. Response.Write("<script>window.location='XXX.aspx'</script>")——打開新的頁(yè)面,原窗口被代替;
4. Server.Transfer("XXX.aspx")——打開新的頁(yè)面;
5. Response.Write("<script>window.showModelessDialog('XXX.aspx')</script>")——原窗口保留,以對(duì)話框形式打開新窗口;
6. Response.Write("<script>window.showModelDialog('XXX.aspx')</script>")——對(duì)話框形式打開新窗口,原窗口被代替;

“讓Response.Redirect在新窗口打開的方法有哪些”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI