记录:MVC5 区域(Areas)属性路由应用

2018-06-22 06:15:43来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

1、删除 xxxAreaRegistration.cs文件

2、HomeController

 1     [RouteArea("Mobile")]
 2     [RoutePrefix("Home")]
 3     [Route("{action = Index}")]
 4     public class HomeController : Controller
 5     {
 6         // GET: Mobile/Home
 7         [Route]
 8         [Route("Index")]
 9         public ActionResult Index()
10         {
11             var dtIndexBN = CSA_BLL.Ad.Ad.GetAdByAdKindCode("01");
12             ViewBag.BNList = dtIndexBN;
13 
14             return View();
15         }
16     }

2、JoinController

 1     [RouteArea("Mobile")]
 2     [RoutePrefix("Join")]
 3     [Route("{action = Index}")]
 4     [Route("{controller=Join}/{action= Index}/{code}")]
 5     public class JoinController : Controller
 6     {
 7         private CSA_BLL.Entity.JsonMessage jm = new CSA_BLL.Entity.JsonMessage();
 8         // GET: Mobile/Join
 9         [Route]
10         [Route("Index")]
11         [Route("Index/{code}",Name = "JoinCode")]
12         public ActionResult Index()
13         {
14             ViewBag.CurKindName = CSA_BLL.Article.Kind.getKindName("07");
15             ViewBag.CurKindList = CSA_BLL.Article.Kind.getKind("07", 2);
16             ViewBag.NewList = CSA_BLL.Article.Article.getArticle("07", 0, "Bs_NewsKindCode asc");
17             return View();
18         }
19     }

3、生成链接

@Url.RouteUrl("JoinCode", new {action="Index",controller="Join",code=item["code"]})

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:爱上MVC~业务层刻意抛出异常,全局异常的捕获它并按格式返回

下一篇:asp.net mvc项目实战遇见问题及解决方式----ajax请求500错误,请