0
I cannot render bootstrap, scripts and etc, because mine @Scripts.Render
and @Styles.Render
doesn’t work.
The reference System.Web.Optmization
is included in the project.
See the image with the reference and the red underlined renders.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>@ViewBag.Title</title>
<link href="~/favicon.ico" rel="shortcut icon" type="image/x-icon" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="~/Content/bootstrap.css" rel="stylesheet" />
<link href="~/Content/bootstrap-social.css" rel="stylesheet" />
<link href="~/Content/font-awesome.min.css" rel="stylesheet" />
<link href="https://fortawesome.github.io/Font-Awesome/assets/font-awesome/css/font-awesome.css" rel="stylesheet">
<link href="~/Content/Bootsnipp.css" rel="stylesheet" />
@Styles.Render("~/Content/css")
@Scripts.Render("~/bundles/modernizr")
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
@Html.ActionLink("Empresa","Index", "Home", new { area = "" }, new { @class = "navbar-brand" })
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li>@Html.ActionLink("Home", "Index", "Home", new { area = "" }, null)</li>
@*<li>@Html.ActionLink("API", "Index", "Help", new { area = "HelpPage" }, null)</li>*@
<li>@Html.ActionLink("Solicite um orçamento", "Email", "Email", new { area = "" }, null)</li>
</ul>
@Html.Partial("_LoginPartial")
</div>
</div>
</div>
<div class="container body-content">
@RenderBody()
<hr />
<footer>
<div class="container">
<div class="row">
<div class="col-md-4 col-sm-6 footerleft ">
<div class="logofooter"><img src="~/Images/Logomarca_48_48.jpg" /></div>
<p>.</p>
<p><i class="fa fa-map-pin"></i> Endereço - SP Brasil</p> -
<p><i class="fa fa-phone"></i><i class="fa fa-whatsapp"></i> Phone (Brasil) : +55 11 99999-8888</p>
<p><i class="fa fa-envelope"></i> E-mail : [email protected]</p>
</div>
<div class="col-md-2 col-sm-6 paddingtop-bottom">
<h6 class="heading7">GENERAL LINKS</h6>
<ul class="footer-ul">
<li><a href="#"> A Empresa</a></li>
<li><a href="#"> Política de Pivacidade</a></li>
<li><a href="#"> Termos & Condições</a></li>
<li><a href="#"> Client Gateway</a></li>
<li><a href="#"> Ranking</a></li>
<li><a href="#"> Estudos de Casos</a></li>
</ul>
</div>
<div class="col-md-3 col-sm-6 paddingtop-bottom">
<h6 class="heading7">LATEST POST</h6>
<div class="post">
<p>facebook crack the movie advertisment code:what it means for you <span>August 3,2015</span></p>
<p>facebook crack the movie advertisment code:what it means for you <span>August 3,2015</span></p>
<p>facebook crack the movie advertisment code:what it means for you <span>August 3,2015</span></p>
</div>
</div>
<div class="col-md-3 col-sm-6 paddingtop-bottom">
<div class="fb-page" data-href="https://www.facebook.com/empresa" data-tabs="timeline" data-height="300" data-small-header="false" style="margin-bottom:15px;" data-adapt-container-width="true" data-hide-cover="false" data-show-facepile="true">
<div class="fb-xfbml-parse-ignore">
<blockquote cite="https://www.facebook.com/empresa"><a href="https://www.facebook.com/empresa">Facebook</a></blockquote>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6 paddingtop-bottom">
<div class="fb-page" data-href="https://www.twitter.com" data-tabs="timeline" data-height="300" data-small-header="false" style="margin-bottom:15px;" data-adapt-container-width="true" data-hide-cover="false" data-show-facepile="true">
<div class="fb-xfbml-parse-ignore">
<blockquote cite="https://www.twitter.com"><a href="https://www.twitter.com">Twitter</a></blockquote>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6 paddingtop-bottom">
<div class="fb-page" data-href="https://www.linkedin.com" data-tabs="timeline" data-height="300" data-small-header="false" style="margin-bottom:15px;" data-adapt-container-width="true" data-hide-cover="false" data-show-facepile="true">
<div class="fb-xfbml-parse-ignore">
<blockquote cite="https://www.linkedin.com"><a href="https://www.linkedin.com">Linkedin</a></blockquote>
</div>
</div>
</div>
</div>
</div>
</footer>
<!--footer start from here-->
<div class="copyright">
<div class="container">
<div class="col-md-6">
<p>© @DateTime.Now.Year - All Rights with empresa</p>
</div>
<div class="col-md-6">
<ul class="bottom_ul">
<li><a href="#">meudominio.com.br</a></li>
<li>@Html.ActionLink("About us", "Index", "Sobre", new { area = "" }, null)</li>
<li><a href="#">Blog</a></li>
<li><a href="#">Faq's</a></li>
<li>@Html.ActionLink("Contact us", "Email", "Email", new { area = "" }, null)</li>
<li><a href="#">Site Map</a></li>
</ul>
</div>
@Scripts.Render("~/bundles/jquery")
@Scripts.Render("~/bundles/bootstrap")
@RenderSection("Scripts", required: false)
</body>
</html>
If any is missing it is because I must have removed accidentally, because clear the company name not to appear, because it is not mine and this is a test, to make a showcase.
What is the error that shows when you mouse over underlined code?
– Jéf Bueno
Images do not open here because the proxy company blocks, have to paste the code?
– Guilherme Nascimento
@Guilhermenascimento, the code is:
@Scripts.Render("~/bundles/jquery")
@Scripts.Render("~/bundles/bootstrap")
– pnet
@jbueno, the mistake is:
The name Scripts does not exists in the current context
– pnet
Edit the question and post the whole View code, read more on https://pt.meta.stackoverflow.com/a/5485/3635
– Guilherme Nascimento
Is this a solution started from scratch? Or have you modified something?
– Leonel Sanches da Silva
From Zero and Empty, everything is being manually placed, is to learn even, your suggestion, @Ciganomorrisonmendez and Eduardo Pires
– pnet