■ UrlHelperExtensions 클래스의 Action 확장 메소드를 사용해 절대 경로를 갖는 URL을 구하는 방법을 보여준다.
▶ Controllers/TestController.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
using Microsoft.AspNetCore.Mvc; using Microsoft.Docs.Samples; namespace TestProject.Controllers { /// <summary> /// 테스트 컨트롤러 /// </summary> public class TestController : Controller { //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Public #region 인덱스 페이지 처리하기 - Index() /// <summary> /// 인덱스 페이지 처리하기 /// </summary> /// <returns>액션 결과</returns> public IActionResult Index() { string url = Url.Action("Edit", new { id = 20 }); return Content(url); } #endregion #region 편집 페이지 처리하기 - Edit(id) /// <summary> /// 편집 페이지 처리하기 /// </summary> /// <param name="id">ID</param> /// <returns>액션 결과</returns> public IActionResult Edit(int id) { return ControllerContext.MyDisplayRouteInfo(id); } #endregion } } |