步骤:
1. 建立一个空白解决方案blank solution,如:d:/MyProject/MyProject.sln
2. 在d:/MyProject下建一个Web Application的根目录d:/MyProject/WebMis并设为http://localhost/WebMis的虚拟目录
3. 在WebMis目录下根据模块分别新建目录,如:d:/MyProject/WebMis/Login和d:/MyProject/WebMis/CheckOut
4. 在VS.net中根据模块新建web application,如:http://localhost/WebMis/Login和http://localhost/WebMis/CheckOut
5. 新建后Login和CheckOut两个目录自动被设置为虚拟目录
6. 在WebMis项目中添加Login和CheckOut的项目引用
7.在IIS管理器中删除Login和CheckOut的虚拟目录
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/Login和d:/MyProject/WebMis/CheckOut
4. 在VS.net中根据模块新建web application,如:http://localhost/WebMis/Login和http://localhost/WebMis/CheckOut
5. 新建后Login和CheckOut两个目录自动被设置为虚拟目录
6. 在WebMis项目中添加Login和CheckOut的项目引用
7.在IIS管理器中删除Login和CheckOut的虚拟目录
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中的几节必须删除。