本文介绍了如何在global.asax中获取Curring运行URL路径的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好我正在尝试在grobal.asax文件的application_start中获取IIS主机路径/ Localhost路径但是它的抛出错误。

这里是我写的代码来获取这个。

Hi i am trying to get IIS hosting path/Localhost path in application_start of grobal.asax file but its throwing error.
here is my code i have written to get this.

protected void Application_Start() 
{ 
URL = System.Web.HttpContext.Current.Request.Url.GetLeftPart(UriPartial.Authority).ToString(); 
} 





错误:请求在Application_Start中的此上下文异常中不可用



谢谢

Santosh



Error : Request is not available in this context exception in Application_Start

Thanks
Santosh

推荐答案



这篇关于如何在global.asax中获取Curring运行URL路径的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 14:23