在ASP.NET中,你可以通过多种方式将参数或查询字符串传递给_Layout.cshtml中的顶部导航。
以下是两种常见的方法:1. 使用ViewBag:ViewBag是ASP.NET MVC框架中的一个特性,它允许你在视图和控制器之间传递数据。
你可以在控制器中设置ViewBag的值,然后在_Layout.cshtml中使用这些值。
示例代码如下:
Controller:```csharppublic ActionResult Index(){ ViewBag.Title = "Home Page"; return View();}```_Layout.cshtml:```html<!DOCTYPE html><html><head> <title>@ViewBag.Title</title></head><body>
<!-- Your navigation bar here --></body></html>
标签:ASP,Layout,Title,ViewBag,cshtml,NET
From: https://blog.51cto.com/M82A1/8341457