获取 global.asa 中当前正在执行的网页的 AppFriendlyName?

发布于 2024-09-11 12:06:37 字数 213 浏览 10 评论 0原文

我需要在 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 技术交流群。

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

发布评论

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

评论(1

送君千里 2024-09-18 12:06:37

这是一种方法。

path = Request.ServerVariables("URL")
position = InStr(2,path,"/",1)
Response.Write Right(Left(path,position-1),position-2) & "<br/>"

虽然看起来可能不太好;)

更新:这当然在 Global.asa 中不起作用,因为您只能在 Session_OnStart 和 Session_OnEnd 中使用 Request 对象。我的错,对不起。

This is one way to do it..

path = Request.ServerVariables("URL")
position = InStr(2,path,"/",1)
Response.Write Right(Left(path,position-1),position-2) & "<br/>"

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.

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