첨부 실행 코드는 나눔고딕코딩 폰트를 사용합니다.
728x90
반응형
728x170

TestProject.zip
다운로드

▶ Pages/Test/index.cshtml

@page
@model TestProject.Pages.Test.IndexModel
<p>인덱스 페이지</p>
<hr />
<p>URL :  @ViewData["URL"]</p>

 

728x90

 

▶ Pages/Test/index.cshtml.cs

using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;

namespace TestProject.Pages.Test
{
    /// <summary>
    /// 인덱스 모델
    /// </summary>
    public class IndexModel : PageModel
    {
        //////////////////////////////////////////////////////////////////////////////////////////////////// Method
        ////////////////////////////////////////////////////////////////////////////////////////// Public

        #region GET 요청시 처리하기 - OnGet()

        /// <summary>
        /// GET 요청시 처리하기
        /// </summary>
        public void OnGet()
        {
            string url = Url.Page("./Edit", new { id = 17, });

            ViewData["URL"] = url;
        }

        #endregion
    }
}
728x90
반응형
그리드형(광고전용)
Posted by icodebroker

댓글을 달아 주세요