ASP.NET 紧急关闭和重定向
有人告诉我,要关闭 ASP.NET 站点并用静态文本替换所有页面,应该添加一个带有特殊扩展名的 HTML 文件。但我的 google/bing 技能不够好,你能帮我吗?
I was told that to shutdown an ASP.NET site and replace all pages with a static text one should add an HTML file with a special extension. But my google/bing skills are not good enough, can you please help me with this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建一个“app_offline.htm”文件并将其放置在应用程序/网站的主目录中。
http://asp-net-whidbey。 blogspot.com/2006/04/aspnet-20-features-appofflinehtm.html
http://weblogs.asp.net/scottgu/archive/2005/10/06/426755.aspx
您可以在 .htm 文件和任何请求中放入您想要的任何 HTML 内容您的应用程序将显示此文件。
请注意 Mehmet Ergut 的评论:
“文件大小应至少为 512 字节,否则 Internet Exploser 不会显示内容。”
– 穆罕默德·埃尔古特
Create an "app_offline.htm" file and place it in the main directory of the application/website.
http://asp-net-whidbey.blogspot.com/2006/04/aspnet-20-features-appofflinehtm.html
http://weblogs.asp.net/scottgu/archive/2005/10/06/426755.aspx
You can put whatever HTML content you want in the .htm file and any request to your application will display this file.
Note Mehmet Ergut's comment:
"The file size should be at least 512 bytes, or Internet Exploser won't display the contents."
– Mehmet Ergut