我们有一个痛苦的遗留Web应用程序,运行经典ASP和.net 3.5的混合体。 我们如何让.NET 4.5.1应用程序作为IIS子应用程序运行到经典ASP应用程序?
我们的目标是:
答案 0 :(得分:0)
您是否在web.config上尝试过location属性?更多详情here。
我的意思是,您可以在新的Application文件夹中放置web.config并覆盖某些设置。像这样:
<location path="." inheritInChildApplications="false">
<system.web>
<globalization culture="pt-BR" uiCulture="pt"/>
<compilation debug="true" targetFramework="4.5" />
<httpRuntime />
....... more stuff
</system.web>
</location>