首先我定義了一個包:ASP.NET MVC 4捆,路徑,以及領先的斜線
var bootstrapBundle = new Bundle("~/bundles/css/styles").Include(
"~/assets/css/bootstrap.css");
,然後在我的佈局文件:
@Styles.Render("~/bundles/css/styles")
這使得到:
<link href="/assets/css/bootstrap.css" rel="stylesheet" />
我的問題是我在2個項目之間共享我的資產,我需要以下內容:
<link href="assets/css/bootstrap.css" rel="stylesheet" />
(注意領導spash的樣式表路徑由於缺少)
什麼辦法可以做到這一點,同時還引用捆綁?先謝謝你。
你試過 「VAR bootstrapBundle =新包(」 〜/包/ CSS /樣式 「)(〜資產/ CSS/bootstrap.css包括 」)。「;」? – Landeeyo
@Landeeyo - 我只收到服務器錯誤。 –