1、新建一个类,取名:BaseRazorPage。
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc.Razor; namespace WebApplicationMVC { public abstract class BaseRazorPage<TModel> : RazorPage<TModel> { public string CustomText { get; } = "Gardyloo! - A Scottish warning yelled from a window before dumping" + "a slop bucket on the street below."; } }
继承基类: RazorPage<TModel>, Razor默认是继承的这个类,所以我们要继承这个类.
2、
3、测试。
。