Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
file.cssルートフォルダにそれがあります。それをというフォルダに入れる方法はあります/contentか/root/?そうすれば、メインプロジェクトのルートフォルダが乱雑になりませんか?
file.css
/content
/root/
はい、できます。ビューファイルでそれを参照するには、次のことができます: (MVC4 / Razor v2)
<link href="~/content/file.css" rel="stylesheet" type="text/css" />
MVC3の場合
<link href="@Url.Content("~/content/file.css")" rel="stylesheet" type="text/css" />