1. 程式人生 > >.NET 中如何彈出新頁面,而不出現阻止

.NET 中如何彈出新頁面,而不出現阻止

一.用Response.Redirect()

    比如在這個頁面中有一個DropDownList 和 一個button ,dropdownlist 的value為一些頁面的URL,當選好後,點選Button後,轉向dropdownlist 的value對應的頁面。

程式碼如下:

using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Diagnostics;
public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        this.Button1.Attributes.Add("onclick","this.form.target = '_blank'");
    }
    protected void Button1_Click(object sender, EventArgs e)
    {
        string url = "

http://www.baidu.com";
        this.Response.Redirect(url);
    }
}

二. 用Ajax實現

1、 在web程式設計過程中,經常會遇到一些頁面需要彈出視窗,但是在伺服器端用window.open彈出的視窗會被IE阻止掉,showModalDialog彈出的視窗有時並不能滿足我們需要,我們需要彈出新的瀏覽器視窗。 2、 為什麼我們編寫的彈出視窗會被IE阻止呢,原來IE會自動判斷彈出視窗的狀態,它會阻止自動彈出的視窗,而通過我們用滑鼠點選彈出的視窗,它是不會阻止的。這裡就有一個問題,有人說:我的程式是寫在伺服器按鈕裡的,也是通過滑鼠點選彈出的呀!其實只有在載入頁面後,我們點選到彈出這段時間頁面沒有被重新載入的情況下,彈出的窗口才不會被阻止!這也就是說,寫在伺服器控制元件的回傳事件裡的
window.open都會被阻止。

3、 問題搞清楚了事情也就好辦了,我們可以用ajax來與伺服器端通訊,在客戶端用javascript來編寫事件處理程式,這樣在客戶端的就不會因為回傳事件而重新載入頁面,這樣彈出視窗就不會被阻止了!

如:

Default.aspx:

<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
    <title>無標題頁</title>
</head>
<script language ="javascript" >

           function getAjaxXml()
    {
        var xml = new ActiveXObject("Microsoft.XMLHTTP");
        var str="flag="+document.getElementByIdx("DropDownList1").value;
        xml.open("GET","showxml.aspx?"+str,false);   //get和post都可以
        xml.send();
        return xml.responseText;
    }
   
    function dropdownlistclick()
    {
        var value=getAjaxXml();
        window.open (value);
    }

</script>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:DropDownList ID="DropDownList1" runat="server" onchange="dropdownlistclick()">
        <asp:ListItem Value="1.htm">1</asp:ListItem>
        <asp:ListItem Value="2.htm">2</asp:ListItem>
        <asp:ListItem Value="3.htm">3</asp:ListItem>
        <asp:ListItem Value="4.htm">4</asp:ListItem>
        </asp:DropDownList>

    </div>

    </form>
</body>
</html>

showxml.aspx.cs:

      using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;


public partial class _showxml : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        Response.Write(Request ["flag"]);
    }
}