asp.net-mvc-3 – ASP.NET MVC 3 _Layout.cshtml控制器

前端之家收集整理的这篇文章主要介绍了asp.net-mvc-3 – ASP.NET MVC 3 _Layout.cshtml控制器前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有人可以帮我吗?我使用Razor视图引擎,我需要传递一些数据到_Layout.我该怎么做?

解决方法

像往常一样,首先创建一个表示数据的视图模型:
public class Myviewmodel
{
    public string SomeData { get; set; }
}

那么一个控制器将从某个地方获取数据:

public class MyDataController: Controller
{
    public ActionResult Index()
    {
        var model = new Myviewmodel
        {
            SomeData = "some data"
        };
        return PartialView(model);
    }
}

然后对应的视图(〜/ Views / MyData / Index.cshtml)来表示数据:

@{
    Layout = null;
}
<h2>@Model.SomeData</h2>

最后在你的_Layout.cshtml里面包含这个数据:

@Html.Action("index","mydata")
原文链接:https://www.f2er.com/aspnet/246628.html

猜你在找的asp.Net相关文章