473,385 Members | 1,838 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

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 16696
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
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
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
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
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
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
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
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
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
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
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
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
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...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

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.