Sharing views between ASP.NET MVC 3 Web application projects

前端 未结 1 1654
醉酒成梦
醉酒成梦 2021-02-10 04:19

I have several ASP.NET MVC 3 Web applications that have a lot of common objects:

  • The same login controller. The few differences between their login systems are cap
1条回答
  •  不思量自难忘°
    2021-02-10 05:12

    You may want to look at MVCContrib Portable areas. They allow you to compile an entire MVC application area into one assembly, including controllers, views and supporting files such as JavaScript and CSS. I've worked on a large project that made extensive use of them and they work well, especially combined with T4MVC.

    0 讨论(0)
提交回复
热议问题