This is the error:
Linha 1:
<%@ Application Codebehind="Global.asax.cs" Inherits="Util.MvcApplication" Language="C#" %>
I had created another project called Util and started to give this problem. What I did, I removed the project and continued. But in my Global.asax it looks like this:
<%@ Application Codebehind="Global.asax.cs" Inherits="Ruptura.MvcApplication" Language="C#" %>
How do I resolve this? This is the complete error:
Erro de Servidor no Aplicativo '/'.
Erro do Analisador
Descrição: Erro ao analisar um recurso necessário para atender esta solicitação.
Examine os detalhes específicos do erro de análise e modifique o arquivo de origem
apropriadamente.
Mensagem de Erro do Analisador: Não foi possível carregar o tipo 'Util.MvcApplication'.
Erro de Origem:
Linha 1:
<%@ Application Codebehind="Global.asax.cs" Inherits="Util.MvcApplication" Language="C#" %>
Arquivo de Origem: /global.asax Linha: 1
Informações sobre a Versão: Microsoft .NET Framework Versão:4.0.30319;
Versão do ASP.NET:4.0.30319.34009
It's the whole project, but put my View and Master
View :
@{
ViewBag.Title = "Acao";
Layout = "~/Views/Shared/_LayoutBase.cshtml";
}
<h2>Acao</h2>
<div class="row">
<div class="col-md-6">
<div class="col-md-1">
<label for="txtCnpjPdv">UF:</label>
</div>
<div class="col-md-6">
<input type="text" class="form-control col-md-6" id="txtCnpjPdv"
placeholder="Digite o Cnpj" />
</div>
</div>
</div>
And the layout of it (Master):
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
@Styles.Render("~/bundles/css")
@Scripts.Render("~/bundles/modernizr")
@Scripts.Render("~/Scripts/Util.js")
</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>
<span class="icon-bar"></span>
</button>
@*@Html.ActionLink("Pedidos", "Index", "Home", null, new {
@class = "navbar-brand" })*@
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
</ul>
</div>
</div>
</div>
<div class="container body-content">
@RenderBody()
<hr />
<footer>
<p>© @DateTime.Now.Year - Laboratórios Ltda</p>
</footer>
</div>
@Scripts.Render("~/bundles/jquery")
@Scripts.Render("~/bundles/bootstrap")
@RenderSection("scripts", required: false)
</body>
</html>
It got worse! I saw that the Util project was in path and I deleted it once and now this error appears. It seems to me that somewhere in IISExpress it is being requested and there is nothing else of it, Useful :
HTTP Error 500.19 - Internal Server Error
A página solicitada não pode ser acessada porque os dados de configuração
relacionados à página são inválidos.
Informações detalhadas do erro:
Módulo IIS Web Core
Notificação Desconhecido
Manipulador Ainda não determinado
Código do erro 0x80070003
Erro de Configuração Não é possível ler o arquivo de configuração
Arquivo de Configuração \?\D:\Projetos ACHÉ\Ruptura\Util\web.config
URL solicitada http://localhost:53130/
Caminho físico
Método de logon Ainda não determinado
Usuário de logon Ainda não determinado
Diretório de Rastreamento de Solicitação:
C:\Users\Paulo\Documents\IISExpress\TraceLogFiles\
Origem da Configuração:
-1:
0:
More information :
This error occurs when there is a problem reading the Web server or Web application configuration file. In some cases, event logs may contain more information about the cause of this error.
If you see the text "There is a% duplicate% section set", this error occurred because you are running a .NET Framework 3.5-based application in the .NET Framework 4 . If you are running WebMatrix , to resolve this issue, go to the Settings node to set the .NET Framework version / strong> as ".NET 2". You can also remove the extra sections of the web.config file.