在asp.net中获取当前页面的URL的方法(推荐)

房子修得再大也是临时住所,只有那个小木匣才是永久的家,所以,屋宽不如心宽,身安不如心安!

获取Url的方法有两种,通过后台获得或通过前面js获得,如下:

1、通过C#获取当前页面的URL

string url = Request.Url.AbsoluteUri; //结果: //www.haodaima.com/web/index.aspx
string host = Request.Url.Host; //结果:www.haodaima.com
string rawUrl = Request.RawUrl; //结果:/web/index.aspx
string localPath = Request.Url.LocalPath; //结果:/web/index.aspx

2、通过Javascript获取当前页面的URL

var url = document.URL; //结果://www.haodaima.com/web/index.aspx
var href = document.location.href; //结果://www.haodaima.com/web/index.aspx
var host = location.hostname; //结果:www.haodaima.com

以上就是小编为大家带来的在asp.net中获取当前页面的URL的方法(推荐)的全部内容了,希望对大家有所帮助,多多支持~

您可能有感兴趣的文章
ASP.NET轻量级MVC框架Nancy的基本用法

使用grpcui测试ASP.NET core的gRPC服务

ASP.NET Core中的对象池介绍

asp.net中MVC的处理流程详解

ASP.NET Core的日志系统介绍