Notice
Recent Posts
Recent Comments
Tags
- 맥 오라클설치
- Mac Oracle
- ViewData
- javascript redirection
- XSS방어
- 파일업로드 체크
- jquery 바코드생성
- asp.net Select
- django 엑셀불러오기
- 바코드 생성하기
- javascript 바코드 생성
- javascript 바코드스캔
- 말줄임표시
- ViewBag
- 강제이동
- javascript 유효성체크
- 파일업로드 유효성체크
- SSD 복사
- 하드 윈도우 복사
- asp.net dropdownlist
- TempData
- jquery 바코드
- asp.net core Select
- 404에러페이지
- 타임피커
- php 캐쉬제거
- 바코드 스캔하기
- XSS PHP
- 하드 마이그레이션
- ASP.Net Core 404
웹개발자의 기지개
[ASP.Net Core] 현재페이지 경로 정보 얻기 본문
Razor View 페이지 상에서
Context.Request.GetDisplayUrl()
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
@using Microsoft.AspNetCore.Http.Extensions
@{
//http://naver.com/Sports/Detail/33/1?Page=1&code=test
//string url = Context.Request.GetDisplayUrl();
string url = Context.Request.GetDisplayUrl();
//naver.com
string url2 = Context.Request.Host.ToString();
}
@Html.Raw(url)
<br />
@Html.Raw(url2)
|
cs |
ASP.Net 과 ASP.Net Core 의 관련 소스가 틀리다.
ASP.Net 의 현재 경로는 아래의 포스팅글을 참고하면 좋을것 같다.
HttpContext.Current.Request.Url.AbsolutePath
참고 : https://stackoverflow.com/questions/70485236/how-to-get-full-url-in-asp-net-core-razor-pages
참고 : https://xctt.tistory.com/25
'ASP.NET > ASP.NET Core' 카테고리의 다른 글
[ASP.Net Core] 로그인한 다음 이전페이지로 자동 이동 ReturnUrl 기능구현하기 (0) | 2023.05.13 |
---|---|
[ASP.Net Core] ViewBag, ViewData, TempData 와 ASP.Net Web-Form 방식의 ViewState 비교하기 (0) | 2023.04.29 |
[ASP.Net Core] Radio박스에서 Checked 와 Select 박스 option Selected 처리하기 (0) | 2023.04.19 |
[ASP.Net Core] 배포시 Development Mode 에러날때 - ASPNETCORE_ENVIRONMENT (0) | 2023.04.10 |
[ASP.Net Core] PC인지 모바일인지 체크하기 (0) | 2023.03.19 |
Comments