0

我需要在 global.asa Application_Start 事件(经典 ASP)中访问 IIS 应用程序的 AppFriendlyName

我在 global.asax (ASP.NET) 中寻找等效的 HttpContext.Current.Request.ApplicationPath

有没有办法做到这一点 ?

谢谢你的帮助 !

杰罗姆·瓦格纳

4

1 回答 1

0

这是一种方法。。

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 对象。我的错,对不起。

于 2010-07-28T10:00:05.477 回答