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

编辑Tag赚U币
教程Tag:暂无Tag,欢迎添加,赚取U币!

推荐:ASP.NET中常用的26个优化性能方法
1. 数据库访问性能优化    数据库的连接和关闭 娱乐访问数据库资源需要创建连接、打开连接和关闭连接几个操作。这些过程需要多次与数据库交换信息以通过身份验证,比较耗费服务器资源。ASP.

原本的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;
}
}

使用方法:

以下为引用的内容:

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

分享:如何构造一个C#语言的爬虫程序
C#特别适合于构造蜘蛛程序,这是因为它已经内置了HTTP访问和多线程的能力,而这两种能力对于蜘蛛程序来说都是非常关键的。下面是构造一个蜘蛛程序要解决的关键问题:   ⑴ HTML分析:需要

来源:模板无忧//所属分类:.Net教程/更新时间:2008-08-22
相关.Net教程