asp.net mvc 多级目录结构

ASP.NET MVC默认的文件组织和URL访问都是一级,我们通常要将一个功能模块组织到一个目录下。方法是:
1、文件组织
asp.net mvc 多级目录结构
分别在Controllers和Views文件夹下建议CaiGou文件夹,然后将CaiGou模块的CV将到对应文件夹下

2、URL Routing

[c-sharp] view plain copy
  1. //采购部分路由
  2. routes.MapRoute(
  3. "CaiGou",//路由名称
  4. "CaiGou/{controller}/{action}/{id}",//带有参数的URL
  5. new{controller="AddCaiGou",action="Index",id=UrlParameter.Optional}//参数默认值
  6. );
  7. //默认路由
  8. routes.MapRoute(
  9. "Default",//路由名称
  10. "{controller}/{action}/{id}",//带有参数的URL
  11. new{controller="Home",action="Index",id=UrlParameter.Optional}
  12. );

3、Contorller调用View

[c-sharp] view plain copy
  1. publicActionResultIndex()
  2. {
  3. returnView("~/Views/CaiGou/AddCaiGou/Index.aspx");
  4. }

4、访问

“AddCaiGou”为Controller,看起来有点像Action:)名字没取好


你可能感兴趣的:(asp.net)