Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Server Error in '/' Application

Status
Not open for further replies.

joemaur

Programmer
Feb 24, 2002
17
0
0
BR
Hi guys,

I'm trying to run my first ASP.Net app, but I'm getting this error. Is wrotten in the page that opens that a shoul set the value CustomerErrors tag property called mode to Off to see the details of the error. I 've done it, but everything seems to be exactly the same.

Can anyone help me?

Thanx.

José Maurício.
 
1) create a text file named: "web.config.txt"
2) open it and put in the following:
Code:
<!-- Web.Config Configuration File -->

<configuration>
    <system.web>
        <customErrors mode=&quot;Off&quot;/>
    </system.web>
</configuration>

3) Save the file,
4) rename the file to: &quot;web.config&quot;
(remove the &quot;.txt&quot;)
5) ftp this file to the root of your website.

This should work.

Chris &quot;Illegitimis non carborundum&quot;
(don't let the b@st@rds get you down)
 
Hello,

I exactly had the same problem. Go to your Web IIS properties and in front of Application name, click on Create.
Hope this will solve your pb.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top