把一个大的WEB项目拆分成数个小项目,而且不受虚拟目录影响的方法 !

时间:2021-12-16 03:18:38

步骤:

1.         建立一个空白解决方案blank solution,如:d:/MyProject/MyProject.sln

2.         d:/MyProject下建一个Web Application的根目录d:/MyProject/WebMis并设为http://localhost/WebMis的虚拟目录

3.         WebMis目录下根据模块分别新建目录,如:d:/MyProject/WebMis/Logind:/MyProject/WebMis/CheckOut

4.         VS.net中根据模块新建web application,如:http://localhost/WebMis/Loginhttp://localhost/WebMis/CheckOut

5.         新建后LoginCheckOut两个目录自动被设置为虚拟目录

6.  在WebMis项目中添加LoginCheckOut的项目引用

7.在IIS管理器中删除LoginCheckOut的虚拟目录

8.         删除各项目的global.asax(除根项目)

9.         除去个项目的web.config(除根项目)中的如下代码:
<authentication mode="Windows" />
<sessionState mode="InProc" stateConnectionString="tcpip=127.0.0.1:42424" sqlConnectionString="data source=127.0.0.1;Trusted_Connection=yes" cookieless="false" timeout="20" />

或删掉
web.config(若不需要在各目录中进行配置)

10.         编译后,即可运行。

另:注意,子项目或者子模块不删除Web.config时 ,9中的几节必须删除。

1.         建立一个空白解决方案blank solution,如:d:/MyProject/MyProject.sln

2.         d:/MyProject下建一个Web Application的根目录d:/MyProject/WebMis并设为http://localhost/WebMis的虚拟目录

3.         WebMis目录下根据模块分别新建目录,如:d:/MyProject/WebMis/Logind:/MyProject/WebMis/CheckOut

4.         VS.net中根据模块新建web application,如:http://localhost/WebMis/Loginhttp://localhost/WebMis/CheckOut

5.         新建后LoginCheckOut两个目录自动被设置为虚拟目录

6.  在WebMis项目中添加LoginCheckOut的项目引用

7.在IIS管理器中删除LoginCheckOut的虚拟目录

8.         删除各项目的global.asax(除根项目)

9.         除去个项目的web.config(除根项目)中的如下代码:
<authentication mode="Windows" />
<sessionState mode="InProc" stateConnectionString="tcpip=127.0.0.1:42424" sqlConnectionString="data source=127.0.0.1;Trusted_Connection=yes" cookieless="false" timeout="20" />

或删掉
web.config(若不需要在各目录中进行配置)

10.         编译后,即可运行。

另:注意,子项目或者子模块不删除Web.config时 ,9中的几节必须删除。