程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> 關於ASP.NET >> Asp.net Mvc Framework可以在Controller中使用的Url.Action方法

Asp.net Mvc Framework可以在Controller中使用的Url.Action方法

編輯:關於ASP.NET

原本的Url.Action方法是利用RouteCollection來實現Url的Routing的。

所以這裡用一個擴展方法重現一下

using System.Web.Routing;
static public class CUrl {
 public static string Action(this Controller c, string controller, string action) {
  RouteValueDictionary rvd = new RouteValueDictionary();
  rvd.Add("controller", controller);
  rvd.Add("action", action);
  return RouteTable.Routes.GetVirtualPath(c.ControllerContext, rvd).VirtualPath;
 }
}

使用方法:

Code

public ActionResult Index() {
 ViewData["Message"] = this.Action("home", "about");
 return View();
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved