Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
新的 ASP.Net Web 窗体项目的友好 URL 可以在我的计算机上很好地调试,但是当发布到服务器时它不起作用我需要更改 IIS 中的某些内容以使其在服务器上工作吗?
原来我对 Bundles 有同样的问题,发现我需要将它添加到 web.config 文件的 system.webServer 部分:
<modules runAllManagedModulesForAllRequests="true"> <remove name="BundleModule" /> <add name="BundleModule" type="System.Web.Optimization.BundleModule" /> </modules>