如何在 ASP.NET 应用程序中使用 Global.asax 文件?
如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你的意思是 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.
这是一个文件。它位于您的应用程序文件夹中(与您的 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.)