Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

w@shin ! ! !

Erro no web.config

Recommended Posts

Olá pessoal estou começando agora a mexer com ASP/ASP.net 2.0 e fiz uma página .aspx só com uma frase e duas text box e nada programado,´está dando o seguinte erro:]Server Error in '/' Application.--------------------------------------------------------------------------------Runtime Error Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine. Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".<!-- Web.Config Configuration File --><configuration><system.web><customErrors mode="Off"/></system.web></configuration>Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.<!-- Web.Config Configuration File --><configuration><system.web><customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/></system.web></configuration>Peço uma força de vcs, para resolver esse problema... Valeu

Compartilhar este post


Link para o post
Compartilhar em outros sites

Crie um arquivo web.config na raiz do site com o seguinte conteudo:

 

<configuration>	<system.web>		<customErrors mode="Off"/>		<globalization culture="pt-BR" requestEncoding="utf-8" responseEncoding="utf-8"/>	</system.web></configuration>

Ao executar a página uma mensagem de erro datalhada deve ser mostrada.

Compartilhar este post


Link para o post
Compartilhar em outros sites

fala ae arr, fiz isso que você disse, agora aparece a seguinte mensagem:Server Error in '/' Application.--------------------------------------------------------------------------------Parser Error Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately. Parser Error Message: Could not load type '_Default'.Source Error: Line 1: <%@ Page Language="VB" AutoEventWireup="false" CodeFile="teste.aspx.vb" Inherits="_Default" %>Line 2: Line 3: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> Source File: c:\Inetpub\lovescake\web\teste.aspx Line: 1 --------------------------------------------------------------------------------Version Information: Microsoft .NET Framework Version:1.1.4322.2300; ASP.NET Version:1.1.4322.2300

Compartilhar este post


Link para o post
Compartilhar em outros sites

Ele não está encontrando a classe ou dll _Default.Verifique se é mesmo necessário herdar essa classe, se não for pode eliminar essa parte do código:Inherits="_Default"

Compartilhar este post


Link para o post
Compartilhar em outros sites

troca essa linha:<%@ Page Language="VB" AutoEventWireup="false" CodeFile="teste.aspx.vb" Inherits="_Default" %>Por essa:<%@ Page Language="VB" AutoEventWireup="false" CodeFile="teste.aspx.vb" %>

Compartilhar este post


Link para o post
Compartilhar em outros sites

Olá amigo abaixo segue o conteudo completo do meu arquivo web.config:<configuration> <system.web> <customErrors mode="Off"/> <globalization culture="pt-BR" requestEncoding="utf-8" responseEncoding="utf-8"/> </system.web></configuration>Não tem essa linha que você mencionou

Compartilhar este post


Link para o post
Compartilhar em outros sites

Olá to quebrando a cabeça para facilitar vou mostra o conteudo dos três arquivos:teste.aspx.vb:Partial Class _Default Inherits System.Web.UI.Page Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click Dim num1 As Single Dim num2 As Single Dim resultado As Single resultado = Val(txt1.Text) + Val(txt2.Text) lblresultado.Text = resultado & " polegadas " End Sub Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load End SubEnd ClassWeb.config:<?xml version="1.0" encoding="utf-8" ?><configuration> <system.web><customErrors mode="Off"/><globalization culture="pt-BR" requestEncoding="utf-8" responseEncoding="utf-8"/></system.web></configuration>teste.aspx:<%@ Page Language="VB" AutoEventWireup="false"CodeFile="teste.aspx.vb"%><html xmlns="http://www.w3.org/1999/xhtml" ><head runat="server"> <title>Untitled Page</title></head><body> <form id="form1" runat="server"> <div> <br />  <asp:TextBox ID="txt1" runat="server" Width="44px"></asp:TextBox>  <asp:TextBox ID="txt2" runat="server" Width="41px"></asp:TextBox>  <asp:Label ID="lblresultado" runat="server"></asp:Label><br /> <br />  <asp:Button ID="Button1" runat="server" Width="245px" Text="Conversor" /></div> </form></body></html>Erro completo:Server Error in '/' Application.--------------------------------------------------------------------------------Parser Error Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately. Parser Error Message: The 'CodeFile' attribute is not supported by the 'page' directive.Source Error: Line 1: <%@ Page Language="VB" AutoEventWireup="false"CodeFile="teste.aspx.vb"%>Line 2: Line 3: Source File: c:\Inetpub\lovescake\web\teste.aspx Line: 1

Compartilhar este post


Link para o post
Compartilhar em outros sites

troca a primeira linha por essa:<%@ Page Language="VB" Inherits=" _Default" src="teste.aspx.vb" debug="True"%>e vê se fununcia.

Compartilhar este post


Link para o post
Compartilhar em outros sites

o erro agora é esse

 

Compilation Error

Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.

 

Compiler Error Message: BC30188: Declaration expected.

 

Source Error:

 

 

 

Line 1:

Line 2: Partial Class _Default

Line 3: Inherits System.Web.UI.Page

Line 4:

 

 

Source File: c:\Inetpub\lovescake\web\teste.aspx.vb Line: 2

Compartilhar este post


Link para o post
Compartilhar em outros sites

Me desculpa perguntar, mas onde você pegou esse código?Tenta assim:Public Class _Default:Inherits System.Web.UI.Page

Compartilhar este post


Link para o post
Compartilhar em outros sites

Peguei no macoratti.net, começou a dar erro na terceira linha... vou ver se eu acho outro artigo melhor para tentar aprender, valeu ARR pela paciência

Compartilhar este post


Link para o post
Compartilhar em outros sites

to ficando triste aqui... fiz um outro exemplo que está dando pau tb... engraçado que local funciona, só não funciona no servidor de hospedagem

Compartilhar este post


Link para o post
Compartilhar em outros sites

A maioria dos Hosts ainda usa o Framework 1.1. Se o código é do framework 2.0 não vai funcionar mesmo.Verifica isso com o provedor.

Compartilhar este post


Link para o post
Compartilhar em outros sites

valeu... sabe como faço então para separar no asp.net 1 o código (.aspx.vb) da interface gráfica (.aspx)... COmo faço a referência do arquivo com acodificação na interface gráfica?

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.