global.asax 和经典 ASP?

发布于 2024-08-03 00:25:16 字数 221 浏览 6 评论 0原文

现在,如果这是一个愚蠢的问题,请原谅我 - 但是......在我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

醉生梦死 2024-08-10 00:25:16

在经典 ASP 中,您可以使用 global.asa 文件来实现类似的功能 global.asax 在 ASP.NET 中的作用

例如

<SCRIPT LANGUAGE="VBScript" RUNAT="Server">


Sub Application_OnStart

    'Application logic to run on start

End Sub

</SCRIPT>

In Classic ASP, you have the global.asa file to achieve similar functionality to what global.asax does in ASP.NET

For example

<SCRIPT LANGUAGE="VBScript" RUNAT="Server">


Sub Application_OnStart

    'Application logic to run on start

End Sub

</SCRIPT>
情何以堪。 2024-08-10 00:25:16

您应该为经典 ASP 应用程序创建一个新的 global.asa 文件。

You should create a new global.asa file for your classic ASP application.

雾里花 2024-08-10 00:25:16

经典的asp有global.asa。

There is global.asa for classic asp.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文