using HelloEmpty_ToRazor.Models; using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc.RazorPages; namespace HelloEmpty_ToRazor.Pages { public class IndexModel : PageModel { // ¸ðµ¨ ¹ÙÀεù Âü°¡ ¾Ï½Ã [BindProperty] public HelloMessage HelloMsg { get; set; } public string Noti { get; set; } public void OnGet() { this.HelloMsg = new HelloMessage() { Message = "Hello Razor Pages" }; } public void OnPost() { this.Noti = "Message Changed!"; } } }