我有一个具有路径的本地应用程序:
http://localhost:950/m/pages/Searchresults.aspx?search=knife&filter=kitchen
但是当它进入集成环境或生产环境时,它会类似于
http://www.someshopping.com/m/pages/SearchResults.aspx?search=knife&filter=kitchen
在某些情况下,我只需要通过:
www.someshopping.com
到我的 XSLT 文件和我正在使用的函数之一:
string currentURL = HttpContext.Current.Request.Url.Host;
这会在本地环境中返回“ localhost ”。相同的代码会返回我吗:
www.someshopping.com正在生产中(我不需要http://)
只是不想冒险。于是问了这个傻问题。