c#获取当前页面的url信息
测试url : http://www.test.com:80/aaa/a.aspx?id=5&name=yh 【1】获取 完整url (协议名+域名+站点名+文件名+参数) string url=Request.Url.ToString();
【2】获取 域名: string url=HttpContext.Current.Request.Url.Host;
【3】获取 端口: int port = HttpContext.Current.Request.Url.Port;
【4】获取 文件路径+页面名: string url= HttpContext.Current.Request.Path;
【5】获取 文件路径+页面名+参数: string url=Request.RawUrl;
【6】获取 参数(?号及其后面的参数): string url= HttpContext.Current.Request.Url.Query;
赞 (0)