获取 global.asa 中当前正在执行的网页的 AppFriendlyName?
我需要在 global.asa Application_Start 事件(经典 ASP)中访问 IIS 应用程序的 AppFriendlyName
我正在寻找 global.asax (ASP.NET) 中 HttpContext.Current.Request.ApplicationPath 的等效
项怎么办?
感谢您的帮助 !
杰罗姆·瓦格纳
I need to get access to the AppFriendlyName of a IIS application in the global.asa Application_Start event (classic ASP)
I am looking for the equivalent of HttpContext.Current.Request.ApplicationPath in the global.asax (ASP.NET)
Is there a way to do that ?
Thanks for your help !
Jerome Wagner
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一种方法。
虽然看起来可能不太好;)
更新:这当然在 Global.asa 中不起作用,因为您只能在 Session_OnStart 和 Session_OnEnd 中使用 Request 对象。我的错,对不起。
This is one way to do it..
although it might not look good on the eyes ;)
UPDATE: Which of course doesn't work in Global.asa, since you can only use the Request object in Session_OnStart and Session_OnEnd. My bad, sorry.