1
我打形式的本地URL返回FALSE Global.asax文件,並隨後使用做的東西,如果它是一個aspx文件(只有一個aspx文件):HttpContext.Current.Request.Url.IsFile當鏈接ASPX頁面
HttpContext.Current.Request.Url.IsFile
它始終解析爲false
不過,我不知道爲什麼。我完全global.asax
代碼:
if(HttpContext.Current.Request.Url.IsFile)
{
if(File.Exists(HttpContext.Current.Request.Url.LocalPath))
{
if(new FileInfo(HttpContext.Current.Request.Url.LocalPath).Extension.Equals("aspx"))
{
DoSomethingWithThePagesURL();
}
}
}
看看這裏一些有用的東西.. http://wdevs.blogspot.com/2009/03/url-properties-of-request-to-aspnet.html – MethodMan 2014-12-04 23:05:15