如何在 ASP.NET 应用程序中使用 Global.asax 文件?

发布于 2024-11-30 03:33:39 字数 130 浏览 0 评论 0原文

如何在 ASP.NET 代码中使用 Global.asax 文件?

是否有某种包含语句,类似于

How do I use a Global.asax file in my ASP.NET code?

Is there some kind of include statement, sort of like <script type="text/javascript" src='xxx.js'></script>?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

下雨或天晴 2024-12-07 03:33:39

你的意思是 global.asax 对吗?只需将其添加到您的项目中即可。您放入其中的代码将由 ASP 运行时获取并按预期执行。

You mean global.asax right? Just add it to your project. The code you put in there will be picked up by the ASP runtime and executed as expected.

暮凉 2024-12-07 03:33:39

这是一个文件。它位于您的应用程序文件夹中(与您的 asp.net 文件位于同一文件夹中)。

您将使用 Global.asax 用于 asp.NET,使用 Global.asa 用于经典 ASP。

右键单击您的项目文件夹,添加新项目,从选项中选择 global.asax,然后就可以了。

(也就是说,您不必像 javascript 或 css 等那样在 .aspx 页面中引用它。global.asax 处理的事件是全局的(因此得名...),不特定于页面。)

It's a file. It goes in your application folder (the same folder your asp.net files go in.)

You'll use Global.asax for asp.NET, and Global.asa for classic ASP.

Right-click your project folder, add new item, pick global.asax from the options, and you're there.

(Which is to say, you don't have to make a reference to it in your .aspx pages like you do for javascript or css, etc. The events that global.asax handles are global (hence the name...), not page-specific.)

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