473,396 Members | 2,090 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,396 software developers and data experts.

Aspx Pages dont work on Server

Hallo,
Have just created a small ASP .Net App with VS 2003 for the first time in
years. After Building a release I proceed and uploaded my folder onto the
wwwroot.
The aspx pages just throw an error. The Htm pages are visible. The error
page is the plain old application error page with info on how to set the
customErrors in the webconfig. I cant even redirect to an errordefault
page
as
that doesn´t work either.
The WebServer is a MS2003 with .Net Framework 1.1.

Please Help
Signed Old and confused

Nov 19 '05 #1
4 1290
could you post the exact error message....:)

"Jarrod" wrote:
Hallo,
Have just created a small ASP .Net App with VS 2003 for the first time in
years. After Building a release I proceed and uploaded my folder onto the
wwwroot.
The aspx pages just throw an error. The Htm pages are visible. The error
page is the plain old application error page with info on how to set the
customErrors in the webconfig. I cant even redirect to an errordefault
page
as
that doesn´t work either.
The WebServer is a MS2003 with .Net Framework 1.1.

Please Help
Signed Old and confused

Nov 19 '05 #2
Serverfehler in der Anwendung '/'.
--------------------------------------------------------------------------------

Laufzeitfehler
Beschreibung: Auf dem Server ist ein Anwendungsfehler aufgetreten. Aufgrund
der aktuellen benutzerdefinierten Fehlereinstellungen für diese Anwendung
können die Details des Anwendungsfehlers nicht angezeigt werden.

Details: Sie können die Details dieser Fehlermeldung auf dem lokalen
Computer anzeigen, indem Sie ein <customErrors>-Tag in der
Konfigurationsdatei "web.config" erstellen, die sich im Stammverzeichnis der
aktuellen Webanwendung befindet. Das 'mode'-Attribut dieses
<customErrors>-Tag sollte auf 'remoteonly' gesetzt sein. Sie können die
Details auf Remotecomputern anzeigen, indem Sie 'mode' auf 'off' setzen.
<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>
Hinweise: Die aktuelle Seite kann durch eine benutzerdefinierte Fehlerseite
ersetzt werden, indem Sie das 'defaultRedirect'-Attribut des
<customErrors>-Konfigurationstags dieser Anwendung so setzen, das es auf
einen benutzerdefinierten Fehlerseiten-URL zeigt.
<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
</system.web>
</configuration>

"danmbuen" wrote:
could you post the exact error message....:)

"Jarrod" wrote:
Hallo,
Have just created a small ASP .Net App with VS 2003 for the first time in
years. After Building a release I proceed and uploaded my folder onto the
wwwroot.
The aspx pages just throw an error. The Htm pages are visible. The error
page is the plain old application error page with info on how to set the
customErrors in the webconfig. I cant even redirect to an errordefault
page
as
that doesn´t work either.
The WebServer is a MS2003 with .Net Framework 1.1.

Please Help
Signed Old and confused

Nov 19 '05 #3
Jarod did you rebuild your app?
Patrick
"Jarrod" <Ja****@discussions.microsoft.com> wrote in message
news:17**********************************@microsof t.com...
Hallo,
Have just created a small ASP .Net App with VS 2003 for the first time in
years. After Building a release I proceed and uploaded my folder onto the
wwwroot.
The aspx pages just throw an error. The Htm pages are visible. The error
page is the plain old application error page with info on how to set the
customErrors in the webconfig. I cant even redirect to an errordefault
page
as
that doesn´t work either.
The WebServer is a MS2003 with .Net Framework 1.1.

Please Help
Signed Old and confused

Nov 19 '05 #4
Hi Patrick

Yes.

Jarrod

"Patrick.O.Ige" wrote:
Jarod did you rebuild your app?
Patrick
"Jarrod" <Ja****@discussions.microsoft.com> wrote in message
news:17**********************************@microsof t.com...
Hallo,
Have just created a small ASP .Net App with VS 2003 for the first time in
years. After Building a release I proceed and uploaded my folder onto the
wwwroot.
The aspx pages just throw an error. The Htm pages are visible. The error
page is the plain old application error page with info on how to set the
customErrors in the webconfig. I cant even redirect to an errordefault
page
as
that doesn´t work either.
The WebServer is a MS2003 with .Net Framework 1.1.

Please Help
Signed Old and confused


Nov 19 '05 #5

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

Similar topics

5
by: Joshua Weir | last post by:
Hi there, I am quite new in terms of server side programming. I understand how asp scripting works and how you put <% %> around your server script. However this is .asp .......what is .aspx? is...
2
by: Amanda Pearls | last post by:
hello our win2003 server is currently facing the following problem. no asp.net web applications are working anymore. anytime i try to open aspx-pages following error message (popup window)...
21
by: matvdl | last post by:
I have a system that was originally developed in asp - the pages are saved in SQL (there are over 10,000 pages) and saved to a temp directory in the server when requested by a client. I have...
4
by: ¿ Mahesh Kumar | last post by:
Hi groups, I'm following Master page concept of ASP.NET 2.0, in which I'm deriving all the following page from master page for Theme. So unfortunately i'm dont get any Form Tag in my derived...
10
by: ptass | last post by:
Hi In asp.net 2.0 an aspx files .cs file is a partial class and all works fine, however, I thought I’d be able to create another class file, call it a partial class and have that compile and...
13
by: Matt | last post by:
Does anyone know how to hide the ASPX extension of web pages in ASP.Net 2.0? Thanks, Matt
1
by: AlexCZ | last post by:
After restart some time is everithing ok. After some hours - some days, problem start. Only in pool, where dll VB6 is used, aspx pages (asp ok) does not work. Event: Failed to execute request...
3
by: Purti Malhotra | last post by:
Hi All, In our Web hosting environment we are using Virtual hosting i.e. multiple websites are on one server and multiple domains are pointing to a single website. Issue: We have two domains...
13
by: Bob Jones | last post by:
Here is my situation: I have an aspx file stored in a resource file. All of the C# code is written inline via <script runat="server"tags. Let's call this page B. I also have page A that contains...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
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
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
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...
0
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
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,...

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.