{ return GetPathInternal(true); }
public override string GetFilePath() { return GetPathInternal(false); }
public override string GetRawUrl() { string query = this.GetQueryString();
if ((query != null) && (query.Length > 0)) { return GetPathInternal(true) + "?" + query; } else { return GetPathInternal(true); } }
public override string GetFilePathTranslated() { return _appPhysPath + _page.Replace(''''/'''', ''''\''''); }
public override string MapPath(string path) { string physPath = null;
if (((path == null) || (path.Length == 0)) || path.Equals("/")) { physPath = this._appPhysPath; }
if (path.StartsWith(this._appVirtPath)) { physPath = this._appPhysPath + path.Substring(this._appVirtPath.Length).Replace(''''/'''', ''''\''''); }
return physPath; } }
上一页 [1] [2] [3] |