0

我想要一个变量 option_name 在 site.master 中孵化。

网站主

<%@ Master Language="C#" Inherits="System.Web.Mvc.ViewMasterPage" %>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>
       <% here!!!! %>
        <asp:ContentPlaceHolder ID="TitleContent" runat="server" />
    </title>
</head>
<body>
</body>
</html>

配置文件

[Table(Name = "Site_Config")]
public class Configs
{
    [Column(IsPrimaryKey = true, IsDbGenerated = true, AutoSync = AutoSync.OnInsert)]
    public int ID_option { get; set; }
    [Column]
    public string option_name { get; set; }
    [Column]
    public string option_title { get; set; }
    [Column]
    public string option_value { get; set; }
}

我已经编写了要插入变量值的代码。我知道如何通过“索引”视图进行操作,但我想在所有页面上显示一个值

4

1 回答 1

0

您可以将 option_name 参数放入 ViewBag 对象并显示在您的母版页上。有关在此处使用 ViewBag 对象的更多信息

于 2012-07-06T11:24:45.150 回答