473,480 Members | 2,050 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Server Error in '/' Application

I give up! I've installed a new 2000 Server machine with the .NET framework
1.1. When I create the simplest for .aspx pages (nothing but a paragraph
with "test" in it and no codebehind page) and try to view this page I get
the following error. I've checked the security settings for the ASPNET user'
s "temp" directory and they are OK. The ASPNET user does have "Impersonate a
client after authentication". Where else do I look?

Thanks

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>


Nov 18 '05 #1
5 16714
Try doing what it says, then posting us the error! the ASPNET user needs to
read/write to the framework inside %windir% so it can create a class from
your aspx page.

"Rick Lemons" <ri***@cdldata.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
I give up! I've installed a new 2000 Server machine with the .NET framework 1.1. When I create the simplest for .aspx pages (nothing but a paragraph
with "test" in it and no codebehind page) and try to view this page I get
the following error. I've checked the security settings for the ASPNET user' s "temp" directory and they are OK. The ASPNET user does have "Impersonate a client after authentication". Where else do I look?

Thanks

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>

Nov 18 '05 #2
Have you tried turning CustomErrors mode off to see what the problem is?

--
Thanks, Jeff

"Rick Lemons" <ri***@cdldata.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
I give up! I've installed a new 2000 Server machine with the .NET framework 1.1. When I create the simplest for .aspx pages (nothing but a paragraph
with "test" in it and no codebehind page) and try to view this page I get
the following error. I've checked the security settings for the ASPNET user' s "temp" directory and they are OK. The ASPNET user does have "Impersonate a client after authentication". Where else do I look?

Thanks

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>

Nov 18 '05 #3
I did set the <customErrors mode="Off" /> in web.config and got the exact
same message.

"Chris Small" <chris@sloppycode[remove for nospam].net> wrote in message
news:3f***********************@mercury.nildram.net ...
Try doing what it says, then posting us the error! the ASPNET user needs to read/write to the framework inside %windir% so it can create a class from
your aspx page.

"Rick Lemons" <ri***@cdldata.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
I give up! I've installed a new 2000 Server machine with the .NET framework
1.1. When I create the simplest for .aspx pages (nothing but a paragraph
with "test" in it and no codebehind page) and try to view this page I get the following error. I've checked the security settings for the ASPNET

user'
s "temp" directory and they are OK. The ASPNET user does have "Impersonate a
client after authentication". Where else do I look?

Thanks

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>


Nov 18 '05 #4
Yes. I get the exact same error screen. It's like there is an error before
it even checks this setting.
"Jeff B." <je**@nowhere.com> wrote in message
news:%2***************@TK2MSFTNGP11.phx.gbl...
Have you tried turning CustomErrors mode off to see what the problem is?

--
Thanks, Jeff

"Rick Lemons" <ri***@cdldata.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
I give up! I've installed a new 2000 Server machine with the .NET framework
1.1. When I create the simplest for .aspx pages (nothing but a paragraph
with "test" in it and no codebehind page) and try to view this page I get the following error. I've checked the security settings for the ASPNET

user'
s "temp" directory and they are OK. The ASPNET user does have "Impersonate a
client after authentication". Where else do I look?

Thanks

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>


Nov 18 '05 #5
Problem solved. The ASPNET account did not have privileges for the folders
in this web site.

Thanks for your help everyone.
"Rick Lemons" <ri***@cdldata.com> wrote in message
news:Oc**************@TK2MSFTNGP10.phx.gbl...
Yes. I get the exact same error screen. It's like there is an error before
it even checks this setting.
"Jeff B." <je**@nowhere.com> wrote in message
news:%2***************@TK2MSFTNGP11.phx.gbl...
Have you tried turning CustomErrors mode off to see what the problem is?

--
Thanks, Jeff

"Rick Lemons" <ri***@cdldata.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
I give up! I've installed a new 2000 Server machine with the .NET

framework
1.1. When I create the simplest for .aspx pages (nothing but a paragraph with "test" in it and no codebehind page) and try to view this page I get the following error. I've checked the security settings for the ASPNET

user'
s "temp" directory and they are OK. The ASPNET user does have "Impersonate
a
client after authentication". Where else do I look?

Thanks

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>



Nov 18 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
4645
by: VinnieT | last post by:
I have a load balanced system that consists of 3 production servers. There are about 20 different applications that are used on these boxes. One of my applications in particular is used more than...
6
635
by: Javier Cortés Cortés | last post by:
i am getting this error when i am trying to access any file(with the ext. aspx) from my remote server. the error is : Server Error in '/' Application....
1
3143
by: Keith | last post by:
All, I have been told this is an ASP.NET issue and not an IIS issue, so I am posting this here. I have a problem with ASP.NET returning an HTTP 500 error when trying to run ASPX pages on...
9
647
by: Steve Buster | last post by:
All right, I have read every forum, newsgroup etc about this issue and no one seems to know how to fix it. I am getting a "Server Application Unavailable" exception running my .NET 1.1...
4
5370
by: tommy | last post by:
hello everbody, i write a little asp-application with forms-authentication. i copy my aspx-files with web.config to my webspace and i get the error above... i tried to set the...
6
3476
by: AlanS | last post by:
I have used Visual Studio for about 8 months. I have developed some ASP solutions. I had to get on with some other things and have not worked with ASP.NET for a couple months. In the meantime, I...
0
1657
by: Darren | last post by:
Hi, I get the above error message when I try to run my page on the remote server. As I am a newbie with .net, I chose Project | Copy to copy the files needed to a seperate local directory then...
12
26766
by: Kevin Farless | last post by:
Hi all, I'm having trouble viewing any .aspx pages on my hosting company's server. The server is a new box running Windows Server 2003 default installation. I'm the first client to try using...
5
6545
by: Bruce Schechter | last post by:
I just started to develop an ASP.NET application in vs.net 2003 . But each time I try to execute the application (which is basically empty so far), I get a dialog box titled "Microsoft Development...
17
5067
by: Jon B | last post by:
Hi All! I have a ASP.NET 2.0 site that works on the Windows 2000 Server. However, when I tried to view this site on my local Windows XP machine, I get "Server Unavailable". If I switch the...
0
7033
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
6903
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
1
6726
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
5318
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
4763
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4468
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
2974
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1291
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
170
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.