>백엔드 개발 >C#.Net 튜토리얼 >C# 현재 페이지의 URL 샘플 코드 가져오기

C# 현재 페이지의 URL 샘플 코드 가져오기

黄舟
黄舟원래의
2017-01-19 11:05:301168검색

이 예제의 테스트 URL: http://www.mystudy.cn/web/index.aspx

1. C#을 통해 현재 페이지의 URL을 가져옵니다.

string url = Request.Url.AbsoluteUri; //结果: <a href="http://www.mystudy.cn/web/index.aspx" target="_blank">http://www.mystudy.cn/web/index.aspx</a>   
string host = Request.Url.Host; //结果:www.mystudy.cn   
string rawUrl = Request.RawUrl; //结果:/web/index.aspx   
string localPath = Request.Url.LocalPath; //结果:/web/index.aspx

2. Javascript를 통해 현재 페이지의 URL을 가져옵니다

var url = document.URL; //结果:http://www.mystudy.cn/web/index.aspx   
var href = document.location.href; //结果:http://www.mystudy.cn/web/index.aspx   
var host = location.hostname; //结果:www.mystudy.cn

위는 C#의 내용입니다. 현재 페이지의 URL을 가져오는 샘플 코드는 PHP 중국어 사이트를 참고하세요. (www.php.cn)!


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.