热门IT资讯网

asp.net mvc 获取网站的BasePath

发表于:2024-11-24 作者:热门IT资讯网编辑
编辑最后更新 2024年11月24日,public string BasePath{get{string ip_port = Request.Url.GetLeftPart(UriPartial.Authority);if (!strin

public string BasePath

{

get

{

string ip_port = Request.Url.GetLeftPart(UriPartial.Authority);

if (!string.IsNullOrWhiteSpace(ip_port) && ip_port.Contains("62.155.197.173"))

{

ip_port = "http://62.155.197.173:1888";

}

string basePath = ip_port + "/";

return basePath;

}

}


0