cshtml 中的 AppState = Context.Application 和 控制器中的 Application 也相等

AppState = Context.Application
@{
    ViewBag.Title = "Home Page";

    AppState["s1"] = "状态一";
}

<div class="jumbotron">
    <p>AppState: @AppState["s1"]</p>
    <p>Context.Application: @Context.Application["s1"]</p>
</div>

  

猜你喜欢

转载自www.cnblogs.com/webenh/p/10929940.html