程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> ASP.NET基礎 >> System.Web.Routing入門及進階

System.Web.Routing入門及進階

編輯:ASP.NET基礎
UrlRouting高級應用
預計效果:
復制代碼 代碼如下:
當我訪問/a/b.aspx時就會轉到Default.aspx?category=a&action=b在頁面上顯示
category:a
action:b
亦如果我訪問/chsword/xxxx.aspx就會轉到Default.aspx?category=chsword&action=xxxx就會顯示
category:chsword
action:xxxx
如果訪問/chsword/就會轉到 Default.aspx?category=chsword&action=index就會顯示
category:chsword
action:index

首先我建立一個Route
復制代碼 代碼如下:
routes.Add(
"Default",
new Route("{category}/{action}.aspx",
new RouteValueDictionary(
new
{
file = "Default",
category = "home",
action = "index"
}), new MyRouteHandler()
)
);

當然IHttpHandler的處理方式也要有所改變
為了方便查看我使用了下方法:
復制代碼 代碼如下:
context.Server.Execute(string.Format("/{0}.aspx?category={1}&action={2}",
RequestContext.RouteData.Values.ContainsKey("file")
? RequestContext.RouteData.Values["file"].ToString()
: "default",
RequestContext.RouteData.Values.ContainsKey("category")
? RequestContext.RouteData.Values["category"].ToString()
: "",
RequestContext.RouteData.Values.ContainsKey("action")
? RequestContext.RouteData.Values["action"].ToString()
: "")
);

即/a/b.aspx是映射到Default.aspx?category=a&action=b
在Default.aspx中寫如下代碼:
復制代碼 代碼如下:
category:<%=Request.Params["category"] %><br />
action:<%=Request.Params["action"] %>

以顯示傳入的參數。
如果在IIS中設置Index.aspx時就算輸入/a/也會訪問到/a/index.aspx,即默認的會按RouteValueDictionary中設置的值自動補全
UrlRouting使用正則表達式規則
UrlRouting在定義的時候也可以按正則的規則來進行定義。
復制代碼 代碼如下:
routes.Add(
"zz",
new Route("{category}/{action}.chs",
new RouteValueDictionary(
new {
file = "Default",
category = "home",
action = "1"
}),
new RouteValueDictionary(
new {
action = "[\\d]+"
}),
new MyRouteHandler()
)
);

以上代碼規定了action只能是數字則訪問/a/1.chs可以正常訪問。
而訪問/a/b.chs則會顯示未找到資源。
當然這是裡可以使用更高級的正則表達式。
UrlRouting的技巧
排除UrlRouting的方法:
System.Web.Routing默認提供了一個IRouteHandler-StopRoutingHandler Class,經過它處理的URL不會被做任何處理
通常使用方法如下:
routes.Add(new Route("{resource}.axd/{*pathInfo}", new StopRoutingHandler()));
RouteHandler工廠:
其實IRouteHandler可以實現一個RouteHandler的簡單工廠。
復制代碼 代碼如下:
public class RouteHandlerFactory : IRouteHandler
{
string Name { get; set; }
public RouteHandlerFactory(string name){this.Name = name;}
#region IRouteHandler 成員
public IHttpHandler GetHttpHandler(RequestContext requestContext) {
if (this.Name == "mypage")
return new MyPage(requestContext);
if(this.Name="mypage1")
return new MyPage1(requestContext);
}
#endregion
}

規定HTTP verbs,這裡要使用System.Web.Routing中的HttpMethodConstraint
復制代碼 代碼如下:
void Application_Start(object sender, EventArgs e) {
RegisterRoutes(RouteTable.Routes);
}
public static void RegisterRoutes(RouteCollection routes){
string[] allowedMethods = { "GET", "POST" };
HttpMethodConstraint methodConstraints = new HttpMethodConstraint(allowedMethods);
Route reportRoute = new Route("{locale}/{year}", new ReportRouteHandler());
reportRoute.Constraints = new RouteValueDictionary { { "httpMethod", methodConstraints } };
routes.Add(reportRoute);
}

Demo程序代碼下載:
WebApplication3.rar
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved