ASP.NET URL 가 져 오 는 방법 모음

2068 단어 ASP.NETURL
//전체 url 가 져 오기(프로 토 콜 명+도 메 인+사이트 명+파일 명+인자)
string fullUrl = Request.Url.ToString();
//클 라 이언 트 가 요청 한 URL 정보 가 져 오기(호스트 와 포트 는 포함 되 지 않 음)
string rawUrl = Request.RawUrl;
//사이트 이름+페이지 이름 가 져 오기
string absolutePath = Request.Url.AbsolutePath;
//호스트 부분 가 져 오기
string urlHost = Request.Url.Host;
//매개 변수 부분 가 져 오기
string urlQuery = Request.Url.Query;
//서버 에 있 는 ASP.NET 프로그램의 가상 경 로 를 가 져 옵 니 다.
string ApplicationPath = Request.ApplicationPath;
//현재 요청 한 가상 경로 가 져 오기
string CurrentExecutionFilePath = Request.CurrentExecutionFilePath;
//현재 요청 한 가상 경로 가 져 오기
string Path = Request.Path;
//URL 확장자 가 있 는 자원 의 추가 경로 정보 가 져 오기
string PathInfo = Request.PathInfo;
//요청 한 URL 에 대응 하 는 물리 파일 시스템 경로 가 져 오기
string PhysicalPath = Request.PhysicalPath;
//파일 이름 을 가 져 오 는 로 컬 운영 체제 표시 형식
string LocalPath = Request.Url.LocalPath;
//절대 URL 가 져 오기
string AbsoluteUri = Request.Url.AbsoluteUri;
전체 코드 데모

StringBuilder sb = new StringBuilder();
sb.Append(" url( + + + + ):" + fullUrl + "<br />");
sb.Append(" URL ( ):" + rawUrl + "<br />");
sb.Append(" + :" + absolutePath + "<br />");
sb.Append(" :" + urlHost + "<br />");
sb.Append(" :" + urlQuery + "<br />");
sb.Append(" :" + ApplicationPath + "<br />");
sb.Append(" :" + Path + "<br />");
sb.Append(" URL :" + PathInfo + "<br />");
sb.Append(" URL :" + PhysicalPath + "<br />");
sb.Append(" :" + LocalPath + "<br />");
sb.Append(" URL:" + AbsoluteUri + "<br />");
Response.Write(sb.ToString());

좋은 웹페이지 즐겨찾기