global.asax 和经典 ASP?
现在,如果这是一个愚蠢的问题,请原谅我 - 但是......在我的 ASP.NET 应用程序中,我有一个 global.asax 文件,它捕获错误并通过电子邮件向我发送详细信息。 “我可以将 global.asax 放在经典 ASP 文件的根目录中吗?如果出现 ASP 错误,它会触发 global.asax 吗?”
如果这是一个愚蠢的问题,再次抱歉。如果没有关于如何为经典 ASP 重新创建类似内容的任何想法?
Now please excuse me if this is a stupid question - BUT... In my ASP.NET apps, I have a global.asax file that catches an error and emails me the details. 'Could' I put the global.asax in the root of a classic ASP file and if there was an ASP error it would trigger the global.asax?
Again sorry if this is a dumb question.. If not any ideas on how I could re-create something like this for classic ASP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在经典 ASP 中,您可以使用 global.asa 文件来实现类似的功能 global.asax 在 ASP.NET 中的作用
例如
In Classic ASP, you have the global.asa file to achieve similar functionality to what global.asax does in ASP.NET
For example
您应该为经典 ASP 应用程序创建一个新的 global.asa 文件。
You should create a new global.asa file for your classic ASP application.
经典的asp有global.asa。
There is global.asa for classic asp.