Bin 文件夹消息
在Web服务器中,当我删除bin文件夹中的DLL文件时,网页会出现错误。
如果 bin 文件夹中没有文件,如何显示 message.html
?
In a web server, when I delete the DLL files in the bin folder, the web page gives error.
How can I show message.html
if there is no file in the bin folder?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ASP.NET 有一项功能,可以检查名为 的文件是否存在app_offline.htm 位于您网站的根目录中。
如果此文件存在,则将为应用程序的每个请求提供 HTML 页面。这听起来像是您正在寻找的。
我不太确定您想要完成什么,但您可以将
app_offline.htm
文件放入站点根目录中,然后根据需要修改任何文件/程序集。然后,完成后删除app_offline.htm
。ASP.NET has a feature which checks for the existence of a file called app_offline.htm in the root of your site.
If this file is present, the HTML page will be served for every request to the application. This sounds like what you're looking for.
I'm not exactly sure what you're trying to accomplish, but you can put an
app_offline.htm
file in your site root, then modify any files/assemblies as you need to. Then, removeapp_offline.htm
when you're done.