自动启动 ASP.NET 应用程序
正如这里提到的。
还有其他方法可以做到这一点吗?只需修改应用程序的 web.config 文件?
As mentioned here. http://weblogs.asp.net/scottgu/archive/2009/09/15/auto-start-asp-net-applications-vs-2010-and-net-4-0-series.aspx
Is there another way to do this? By just modifying the application's web.config file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
自动启动是 Web 服务器的一项功能,而不是应用程序的一项功能,并且仅适用于 IIS 7.5(Windows 7 和 Windows Server 2008 R2)。另一种可能性是设置一个启动脚本,该脚本将向应用程序发送 HTTP 请求以启动它。
AutoStart is a feature of the web server and not the application and works only with IIS 7.5 (Windows 7 and Windows Server 2008 R2). Another possibility is to setup a startup script that will send an HTTP request to the application in order to start it.