你如何做到这一点?该视图是自动生成的。例如,当我手动添加视图时:其中包含 Index.cshtml 文件的联系人视图。
我可以通过编写控制器联系人来修改此视图。
public class ContactController : Controller
{
public ActionResult Index()
{
@ViewBag.Test = "this text will be used in my Contact View";
return View();
}
}
所以在我的联系人视图中我可以这样做
<p> @Viewbag.Test </p>
并且将显示文本。但是,您如何在我的共享视图中为我的 _Layout.cshtml 文件实现这一点?我通过添加 SharedController 尝试了同样的方法,但没有以这种方式工作