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