27 lines
663 B
C#
27 lines
663 B
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
|
using Microsoft.AspNetCore.Mvc.ViewFeatures;
|
|
|
|
namespace RazorPagesWebSite.TempData
|
|
{
|
|
public class TempDataPageModel : PageModel
|
|
{
|
|
[TempData]
|
|
public string Message { get; set; }
|
|
|
|
public IActionResult OnGet()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
public IActionResult OnPost()
|
|
{
|
|
Message = "Secret post";
|
|
return View();
|
|
}
|
|
}
|
|
}
|