0
我的主要問題是我想用主題和按鈕的下拉列表更改我的網站的引導主題。ASP.NET web表單動態改變bootstrap主題
@model IEnumerable<ProjectManagementTool.ServiceReference1.Theme>
@{
ViewBag.Title = "Settings";
Layout = "~/Views/Shared/_Layout.cshtml";
}
<form action="/Home/Settings" method="get">
<h2>Settings</h2>
<br />
<h4>Change Theme</h4>
@Html.DropDownList("GetThemes", null, htmlAttributes: new { @class = "form-control" })
<br />
<p>
<input class="btn btn-default" type="submit" value="Save"/>
</p>
@foreach (var item in Model)
{
@Html.DisplayFor(modelItem => item.Path)
<br/>
}
</form>
foreach循環是隻是爲了顯示有多種不同的路徑。
現在的問題是,我怎麼能更改引導?
我知道有這個代碼來改變主題。
@Styles.Render("~/Content/flatly.bootstrap.css")
但它應該在_layout.cshtml文件中設置爲整個網站。
背景與服務一起工作,但在這裏並不重要。