Created
July 21, 2017 21:30
-
-
Save yostane/f68f41075603636dc6abe2f3729ef412 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @page | |
| @model IndexModel | |
| @using Microsoft.AspNetCore.Mvc.RazorPages | |
| <!-- code part --> | |
| @functions { | |
| public class IndexModel : PageModel | |
| { | |
| public string Message { get; private set; } = "In page model: "; | |
| public void OnGet() | |
| { | |
| Message += $" Server seconds { DateTime.Now.Second.ToString() }"; | |
| } | |
| } | |
| } | |
| <!-- Page part --> | |
| <h2>This comes from the page </h2> | |
| <p> | |
| @Model.Message | |
| </p> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment