首页 > 编程 > .NET > 正文

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

2024-07-10 12:50:44
字体:
来源:转载
供稿:网友

推荐: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分析:需要

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表