Application_Start 在工作站上工作正常,部署时不会被调用
我有一个应用程序在我的开发工作站上运行良好,但在将应用程序部署到实时环境时失败。 看来 Application_Start 没有在实时环境中被调用。
I have an application that works great on my development workstation but fails when the application is deployed to the live environment. It seems that Application_Start is not being called in the live environment.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我可以通过删除测试服务器上网站根目录中的 PrecompiledApp.config 文件来修复它。 我猜测该文件是该项目是网站项目时遗留下来的。 我最近将其转换为 Web 应用程序项目。 因此,如果您正在构建 Web 应用程序项目,请确保目标服务器上没有 PrecompiledApp.config 文件。
I was able to fix it by removing the PrecompiledApp.config file that was in the root directory of the web site on our test server. I'm guessing that file was a holdover from when the project was a Web Site project. I recently converted it over to a Web App project. So if you are building a Web App project, make sure you DON'T have a PrecompiledApp.config file on your target server.