ASP.NET頁面通過URL傳遞參數(一)

來源:互聯網
上載者:User

解決的方法一般有3種:

1.設定web.config檔案

<system.web>
......
<globalization requestEncoding="gb2312" responseEncoding="gb2312" culture="zh-CN" fileEncoding="gb2312" />
......
</system.web>

2.傳遞中文之前,將要傳遞的中文參數進行編碼,在接收時再進行解碼。
>> 進行傳遞

string Name = "中文參數";
Response.Redirect("B.aspx?Name="+Server.UrlEncode(Name)) ;

>> 進行接收

string Name = Request.QueryString["Name"];
Response.Write(Server.UrlDecode(Name)) ;

3.如果是從 .HTML 檔案向 .Aspx 檔案進行傳遞中文參數的話(即不從後台用 Redirect()方法進行 Url 轉換)。一樣要將傳遞的中文參數進行編碼,在接收時再進行解碼。
>> 進行傳遞

<script language="JavaScript">
function GoUrl()
{
var Name = "中文參數";
location.href = "B.aspx?Name="+escape(Name) ;
}
<body onclick="GoUrl()">

>> 進行接收

string Name = Request.QueryString["Name"];
Response.Write(Server.UrlDecode(Name)) ;
總結:
一般來說。設定web.config檔案就可以了。但是如果你用 JavaScript 調用 webservice 方法的話(往webservice裡面傳遞中文參數)。設定 web.config 檔案好象無效。
或用

Response.Redirect("test1.aspx?111="+System.Web.HttpUtility.UrlEncode(" 中華人明共和國")) ;
//建議使用最後如果是從其他的頁面擷取中文參數沒有亂碼,那就更簡單了

string message ="http://localhost/Test/test1.aspx?111="+System.Web.HttpUtility.UrlEncode(" 中華人明共和國");

http:
//你要擷取某個頁面的傳回值的地址"
//發送請求
HttpWebRequest myHttpWebRequest = (HttpWebRequest)WebRequest.Create(message) ;
//接受請 求
HttpWebResponse myHttpWebResponse = (HttpWebResponse)myHttpWebRequest.GetResponse() ;
Stream receiveStream = myHttpWebResponse.GetResponseStream() ;
StreamReader readStream = new StreamReader(receiveStream, System.Text.Encoding.GetEncoding("GB2312")) ;
//此為要取頁面的傳回值輸出的返回結果
returnValue = readStream.ReadToEnd();

轉自:http://blog.csdn.net/faunjoe/archive/2009/09/26/4596826.aspx

 

在對URL進行編碼時,該用哪一個?這兩都使用上有什麼區別嗎?

測試:

string file="檔案上(傳)篇.doc";

string Server_UrlEncode=Server.UrlEncode(file);

string Server_UrlDecode=Server.UrlDecode(Server_UrlEncode);

string HttpUtility_UrlEncode=System.Web.HttpUtility.UrlEncode(file);

string HttpUtility_UrlDecode=System.Web.HttpUtility.UrlDecode(HttpUtility_UrlEncode);

Response.Write("原資料:"+file);

SFun.WriteLine("Server.UrlEncode:"+Server_UrlEncode);

SFun.WriteLine("Server.UrlDecode:"+Server_UrlDecode);

SFun.WriteLine("HttpUtility.UrlEncode:"+HttpUtility_UrlEncode);

SFun.WriteLine("HttpUtility.UrlDecode:"+HttpUtility_UrlDecode);

輸出:

原資料:檔案上(傳)篇.doc

Server.UrlEncode:%ce%c4%bc%fe%c9%cf%a3%a8%b4%ab%a3%a9%c6%aa.doc

Server.UrlDecode:檔案上(傳)篇.doc

HttpUtility.UrlEncode:%e6%96%87%e4%bb%b6%e4%b8%8a%ef%bc%88%e4%bc%a0%ef%bc%89%e7%af%87.doc

HttpUtility.UrlDecode:檔案上(傳)篇.doc

區別在於:HttpUtility.UrlEncode()預設是以UTF8對URL進行編碼,而Server.UrlEncode()則以預設的編碼對URL進行編碼。

在用 ASP.Net 開發頁面的時候, 我們常常通過 System.Web.HttpUtility.UrlEncode 和 UrlDecode 在頁面間通過 URL 傳遞參數. 成對的使用 Encode 和 Decode 是沒有問題的.

但是, 我們在編寫檔案下載的頁面的時候, 常常用如下方法來指定下載的檔案的名稱:

Response.AddHeader("Content-Disposition","attachment; filename="

+ HttpUtility.UrlEncode(fileName, Encoding.UTF8));

之所以轉換成 UTF8 是為了支援中文檔案名稱.


時候問題就來了, 因為 HttpUtility.UrlEncode 在 Encode 的時候, 將空格轉換成加號('+'), 在 Decode
的時候將加號轉為空白格, 但是瀏覽器是不能理解加號為空白格的, 所以如果檔案名稱包含了空格, 在瀏覽器下載得到的檔案, 空格就變成了加號.

一個解決辦法是, 在 HttpUtility 的 UrlEncode 之後, 將 "+" 替換成 "%20"( 如果原來是 "+" 則被轉換成 "%2b" ) , 如:

fileName = HttpUtility.UrlEncode(fileName, Encoding.UTF8);

fileName = fileName.Replace("+", "%20");

不明白微軟為什麼要把空格轉換成加號而不是"%20". 記得 JDK 的 UrlEncoder 是將空格轉換成 "%20"的.

經檢查, 在 .Net 2.0 也是這樣.

上面是從別的地方拷貝的,寫得很好,我自己的一個程式中也遇到同樣的問題,預設aspx是以utf-8為編碼的,在我這個程式中必須用gb2312為預設編碼

(<globalization requestEncoding="gb2312" responseEncoding="gb2312"/>),


題出現了,以前沒有問題的HttpUtility.UrlDecode在Page.Request回的值是亂碼這就是上面說的
HttpUtility.UrlDecode預設以UTF8對URL進行編碼,這種情況下面只需將HttpUtility.UrlDecode改成
Server.UrlEncode即可。 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.