site.master でハッチングされた変数 option_name が必要です。
サイトマスター
<%@ 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>
Configs.cs
[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; }
}
変数値を挿入したいコードを書きました。「インデックス」ビューを使用する方法は知っていますが、すべてのページに値を表示したい