English 中文(简体)
MVC项目内MVC项目内MVC项目
原标题:MVC Project within an MVC Project

在IIS,我可以为我的MVC项目 创建一个网站,叫它Foo。

一旦设置好了,我就可以右键点击它 并“添加虚拟目录”栏。

如果我试图让 Bar 成为虚拟目录, 我有一个错误, 说这可能需要一个应用程序 。

所以我右键点击 给酒吧申请 仍然不行

问题在于与Foo与Bar的网络冲突。

似乎我不能只做 , 因为这在配置设置中无效 。

我唯一的另一个想法是在酒吧创建一个 Web. release. config 文件, 并删除所有与 Foo 发生冲突的东西。 这似乎很无聊, 容易出错 。

如何让我的骨髓看起来像我想要的那样(www.foo.com/bar)?

最佳回答

我建议添加一个 标签, 之前有 标签。 这将删除子 Web. config 中所有继承的添加字段, 包括清晰标签前添加的字段 。

这将为连接链、 AppSetting 等工作 。 基本上所有依赖于 < code_ lt; add... / & gt; 标签的东西 。

<!--FOO web.config-->
<connectionStrings>
   <add name="DataBase1" connectionString="..." providerName="..." />
   <add name="DataBase2" connectionString="..." providerName="..." />
</connectionStrings>

<!--BAR web.config-->
<connectionStrings>
   <clear />
   <add name="DataBase1" connectionString="..." providerName="..." />
   <add name="DataBase2" connectionString="..." providerName="..." />
</connectionStrings>
问题回答

酒吧只是一个目录?

您需要使用命名空间。 一旦您定义了您的命名空间, 他们就不会在对象上造成编译器冲突。 在 IIS 中, 您不必做任何事情, 只做您的应用程序 。

namespace BarSpace {

    [classes/code]
}

namespace FooSpace {

 [classes/code]
}




相关问题
Session Management with Windows Authentication

In an ASP.NET web app, using Integrated Windows Authentication, is the session tied to the windows identity? In other words, if I login (using IWA) to the app, and the app stores some "stuff" in my ...

Using Elmah with Cassini

Does anyone know if I can use Elmah with Visual Studio build-in web server(aka Cassini)? I get it working easily on IIS, but using same configuration, it doesn t work with Cassini. When I requested ...

Setting hostname in IIS, include www?

I want to set the hostname for a website I m adding in IIS 7, however do I include the www in the hostname or not? because I want both www.mysite.com and mysite.com both to point to mysite on the ...

inetpub versus any other folder

I ve run websites out of inetpub, as well as from folders just residing on the C: drive. I wonder, are there any definitive advantages to running websites out of inetputwwwroot?

IIS 6.0 hangs when serving a web-service

I am having issues with one of our web-services. It works fine on my development machine (win XP) whether I host it as a separate application or using cassini from Visual studio. Once I deploy on the ...

热门标签