Skip to content

Instantly share code, notes, and snippets.

@yostane
Created July 21, 2017 21:30
Show Gist options
  • Select an option

  • Save yostane/f68f41075603636dc6abe2f3729ef412 to your computer and use it in GitHub Desktop.

Select an option

Save yostane/f68f41075603636dc6abe2f3729ef412 to your computer and use it in GitHub Desktop.
@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