Bootstrap引用
<!–设置移动设置页面标准–>
<meta name=”viewport” content=”width=device-width,initial-scale=1.0″ />
<!–引用bootstrap的核心Css文件–>
<link rel=”stylesheet” href=”~/Content/bootstrap.min.css” />
<!–引用Jquery–>
<script type=”text/javascript” src=”~/Scripts/jquery-1.10.2.min.js” ></script>
<!–引用bootstrap的核心js文件–>
<script type=”text/javascript”src=”~/Scripts/bootstrap.min.js”></script>
—恢复内容开始—
<meta charset=”utf-8″>
<meta http-equiv=”X-UA-Compatible” content=”IE=edge”>
<meta name=”viewport” content=”width=device-width, initial-scale=1″>
<link href=”~/Content/bootstrap.min.css” rel=”stylesheet”>
@Scripts.Render(“~/bundles/jquery”)
@Scripts.Render(“~/bundles/bootstrap”)
@*@RenderSection(“scripts”, required: false)*@
—恢复内容结束—