一、创建Web项目
新建web项目,选择空模板mvc类型,项目创建完成后,Controller和Models文件夹如果不使用可以删除;
在项目中添加区域Student,自动生成mvc文件夹,其中包括继承AreaRegistration的StudentAreaRegistration.cs文件;
二、创建类库
新建类库StudentLab,添加System.Web.dll,System.Web.Mvc.dll 两个引用;
在StudentLab中新建StudentAreaRegistration.cs文件或拷贝Web项目区域中继承AreaRegistration的StudentAreaRegistration.cs文件,注意修改命名空间并删除Web项目中cs文件;
在StudentLab中新建StudentController.cs文件同时继承Controller,引用Using System.Web.Mvc;
三、创建视图
在Web项目Areas\\Student\\Views中,添加对应控制器名称的Student文件夹,然后创建视图文件;
多Area情况下,可以把Views中的Web.config文件拷贝到Areas文件下公用,删除每个Area中的Web.config文件;
四、添加引用
在Web项目中添加引用类库StudentLab.dll;
控制器成功分离,点击视图在浏览器中查看。
- 点赞
- 收藏
- 分享
- 文章举报
yanpwang发布了1 篇原创文章 · 获赞 0 · 访问量 201私信关注