asp教程.net 使用c#.net重寫url方法
url 重寫是截取傳入 web 請求並自動將請求重新導向到其他 url 的過程。
比如瀏覽器發來請求hostname/101.aspx ,伺服器自動將這個請求中定向為http://hostname/list.aspx?id=101。
url重寫的優點在於:
縮短url,隱藏實際路徑提高安全性;
易於使用者記憶和鍵入;
易於被搜尋引擎收錄;
實現url重寫的幾個步驟:
第一:
下載ms的urlrewriter.dll,放到你的web程式的bin下
下載地址:download.microsoft.com/download/0/4/6/0463611e-a3f9-490d-a08c-877a83b797cf/msdnurlrewriting.msi
第二:
下載完成後,在web.config裡設定如下:
<?xml version="1.0" encoding="utf-8" ?>
<!--overred-->
<configuration>
<configsections>
<section name="rewriterconfig"type="urlrewriter.config.rewriterconfigserializersectionhandler, urlrewriter" />
</configsections>
<rewriterconfig>
<rules>
<rewriterrule>
<lookfor>~/d(d+).aspx</lookfor>
<sendto>~/default.aspx?id=$1</sendto>
</rewriterrule>
</rules>
</rewriterconfig>
<system.web>
<httphandlers>
<add verb="*" path="*.aspx" type="urlrewriter.rewriterfactoryhandler, urlrewriter" />
</httphandlers>
</system.web>
</configuration>
其中
<section name="rewriterconfig" type="urlrewriter.config.rewriterconfigserializersectionhandler, urlrewriter" />
用於指定配置節"rewriterconfig"的處理常式類的名稱為”urlrewriter.config.rewriterconfigserializersectionhandler”,該類存在於bin目錄下的urlrewriter .dll檔案中
關鍵的是這兩句
<lookfor>~/d(d+).aspx</lookfor>
<sendto>~/default.aspx?id=$1</sendto>
<lookfor>~/d(d+).aspx</lookfor>表示,使用者輸入的url,d(d+).aspx是 url中檔案名稱匹配的Regex(此處為字母d開頭,後面跟一個或多個數字,並以.aspx結尾。使用者也可根據自己的需要自行設定)。
<sendto>~/default.aspx?id=$1</sendto>,表示當伺服器接收到符合上麵條件的請求後如何重寫url。此處表示訪問defalutl.aspx並傳入參數id,其值$1將用使用者請求的檔案名稱中的第一個數字來表示。
例如使用者輸入 hostname/d11.aspx,伺服器會把他重寫為http://hostname/default.aspx?id=11。換句話說使用者輸入http: //hostname/d11.aspx,實際訪問的是http://hostname/default.aspx?id=11。這樣就起到了隱藏真實檔案名稱,並便於使用者記憶的作用。
處理回傳
在重寫後的url裡如果產生回傳,例如有一個按鈕,又調用了該被重寫的aspx,使用者瀏覽器中將會顯示該aspx檔案實際的地址,也就是http: //hostname/default.aspx?id=11。但從使用者的角度考慮,如 果單擊按鈕時突然看到 url 更改會使他們感到不安。因此必須解決這個問題。
解決方案有二:
(1)自己定義一個actionlessform類,在aspx中不再使用系統提供的form 標記
namespace actionlessform
{
public class form : system.web.ui.htmlcontrols.htmlform
{
protected override void renderattributes(htmltextwriter writer)
{
writer.writeattribute("name", this.name);
base.attributes.remove("name");
writer.writeattribute("method", this.method);
base.attributes.remove("method");
this.attributes.render(writer);
base.attributes.remove("action");
if (base.id != null)
writer.writeattribute("id", base.clientid);
}
}
}
建立此類並對其進行編譯之後,要在 asp.net教程 web 應用程式中使用它,應首先將其添加到 web 應用程式的 references 檔案夾中。然後,要使用它來代替 htmlform 類,做法是在 asp.net 網頁的頂部添加以下內容:
<%@ register tagprefix="skm" namespace="actionlessform" assembly="actionlessform" %>
然後,將 <form runat="server">(如果有)替換為:<skm:form id="form1" method="post" runat="server">
並將右邊的 </form> 標記替換為:</skm:form>
個人並不推薦該方法
(2)第二種方法就是繼承page,這樣你不需要在aspx頁中改任何東西。
代碼:
using system;
using system.io;
using system.web;
using system.web.ui;
namespace url
{
public class olpage : page
{
public olpage()
{}
protected override void render(htmltextwriter writer)
{
if (writer is system.web.ui.html32textwriter)
{
writer = new formfixerhtml32textwriter(writer.innerwriter);
}
else
{
writer = new formfixerhtmltextwriter(writer.innerwriter);
}
base.render(writer);
}
}
internal class formfixerhtml32textwriter : system.web.ui.html32textwriter
{
private string _url; // 假的url
internal formfixerhtml32textwriter(textwriter writer):base(writer)
{
_url = httpcontext.current.request.rawurl;
}
public override void writeattribute(string name, string value, bool encode)
{
if (_url != null && string.compare(name, "action", true) == 0)
{
value = _url;
}
base.writeattribute(name, value, encode);
}
}
internal class formfixerhtmltextwriter : system.web.ui.htmltextwriter
{
private string _url;
internal formfixerhtmltextwriter(textwriter writer):base(writer)
{
_url = httpcontext.current.request.rawurl;
}
public override void writeattribute(string name, string value, bool encode)
{
if (_url != null && string.compare(name, "action", true) == 0)
{
value = _url;
}
base.writeattribute(name, value, encode);
}
}
}
把這個檔案編譯成dll,並在你的項目中引用它。
然後把項目中的所有aspx檔案對應的cs檔案中的繼承page類的代碼改寫為繼承olpage。
例如
public class webform1:page
改寫為
public class webform1:url.olpage