Yanor.net/
Wiki
Blog
GitHub
Sandbox
開始行:
* Razor - CSS・JSファイルのインクルード [#jf977e33]
** CSS/JSファイルパスをBudleに指定 [#va7d8ad1]
*** App_Start\BudnleConfig.cs [#t5b8172f]
public static void RegisterBundles(BundleCollection bund...
{
bundles.Add(new ScriptBundle("~/bundles/jquery").Inc...
"~/Scripts/jquery-{version}.js"));
bundles.Add(new ScriptBundle("~/bundles/bootstrap")....
"~/Scripts/bootstrap.js",
"~/Scripts/respond.js"));
bundles.Add(new StyleBundle("~/Content/css").Include(
"~/Content/bootstrap.css",
"~/Content/site.css"));
}
** レイアウトファイルでBundleを呼び出す [#v14d06bb]
*** Views\Shared\_Layout.cshtml [#pf72c9b4]
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; char...
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, i...
<title>@ViewBag.Title - マイ ASP.NET アプリケーショ...
@Styles.Render("~/Content/css")
@Scripts.Render("~/bundles/modernizr")
** 参考 [#mdc27c72]
http://stackoverflow.com/questions/12028401/styles-render...
終了行:
* Razor - CSS・JSファイルのインクルード [#jf977e33]
** CSS/JSファイルパスをBudleに指定 [#va7d8ad1]
*** App_Start\BudnleConfig.cs [#t5b8172f]
public static void RegisterBundles(BundleCollection bund...
{
bundles.Add(new ScriptBundle("~/bundles/jquery").Inc...
"~/Scripts/jquery-{version}.js"));
bundles.Add(new ScriptBundle("~/bundles/bootstrap")....
"~/Scripts/bootstrap.js",
"~/Scripts/respond.js"));
bundles.Add(new StyleBundle("~/Content/css").Include(
"~/Content/bootstrap.css",
"~/Content/site.css"));
}
** レイアウトファイルでBundleを呼び出す [#v14d06bb]
*** Views\Shared\_Layout.cshtml [#pf72c9b4]
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; char...
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, i...
<title>@ViewBag.Title - マイ ASP.NET アプリケーショ...
@Styles.Render("~/Content/css")
@Scripts.Render("~/bundles/modernizr")
** 参考 [#mdc27c72]
http://stackoverflow.com/questions/12028401/styles-render...
ページ名: