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

custom error page doesnt load

dee
Hi

In web.config I have to the following:

<configuration>
<system.web>
<customErrors defaultRedirect="error.htm" mode="On" />
</system.web>
</configuration>

I generated a forced error in my page. Instead of being
redirected to error.htm i get the following error message form dotnet:

**********
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.

Details: ...

**********

Why don't I ger redirected to my error.htm page?

Thanks.
Dee
Nov 19 '05 #1
6 2285
Do this instead. On Global.asax.cs

protected void Application_Error(Object sender, EventArgs e)
{
Response.Redirect("error.htm");
}

However should be better you use Server.Transfer("error.aspx");

So you can log the error

Hope it helps

"dee" wrote:
Hi

In web.config I have to the following:

<configuration>
<system.web>
<customErrors defaultRedirect="error.htm" mode="On" />
</system.web>
</configuration>

I generated a forced error in my page. Instead of being
redirected to error.htm i get the following error message form dotnet:

**********
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.

Details: ...

**********

Why don't I ger redirected to my error.htm page?

Thanks.
Dee

Nov 19 '05 #2
dee
Hi Albert
protected void Application_Error(Object sender, EventArgs e)
{
Response.Redirect("error.htm");
}
has still same result; it doesnt take me to error.htm but to dotnet page.
"Albert Pascual" <Al***********@discussions.microsoft.com> wrote in message
news:A1**********************************@microsof t.com...
Do this instead. On Global.asax.cs

protected void Application_Error(Object sender, EventArgs e)
{
Response.Redirect("error.htm");
}

However should be better you use Server.Transfer("error.aspx");

So you can log the error

Hope it helps

"dee" wrote:
Hi

In web.config I have to the following:

<configuration>
<system.web>
<customErrors defaultRedirect="error.htm" mode="On" />
</system.web>
</configuration>

I generated a forced error in my page. Instead of being
redirected to error.htm i get the following error message form dotnet:

**********
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.

Details: ...

**********

Why don't I ger redirected to my error.htm page?

Thanks.
Dee

Nov 19 '05 #3
The donotpage? what's that?

"dee" wrote:
Hi Albert
protected void Application_Error(Object sender, EventArgs e)
{
Response.Redirect("error.htm");
}
has still same result; it doesnt take me to error.htm but to dotnet page.
"Albert Pascual" <Al***********@discussions.microsoft.com> wrote in message
news:A1**********************************@microsof t.com...
Do this instead. On Global.asax.cs

protected void Application_Error(Object sender, EventArgs e)
{
Response.Redirect("error.htm");
}

However should be better you use Server.Transfer("error.aspx");

So you can log the error

Hope it helps

"dee" wrote:
Hi

In web.config I have to the following:

<configuration>
<system.web>
<customErrors defaultRedirect="error.htm" mode="On" />
</system.web>
</configuration>

I generated a forced error in my page. Instead of being
redirected to error.htm i get the following error message form dotnet:

**********
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.

Details: ...

**********

Why don't I ger redirected to my error.htm page?

Thanks.
Dee


Nov 19 '05 #4
dee
Here is the page:

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.

Details: To enable the details of this specific error message to be viewable
on the local server machine, 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 "RemoteOnly". To enable the details to be viewable on
remote machines, please set "mode" to "Off".

<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="RemoteOnly"/>
</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="On" defaultRedirect="mycustompage.htm"/>
</system.web>
</configuration>
"Albert Pascual" <Al***********@discussions.microsoft.com> wrote in message
news:4D**********************************@microsof t.com...
The donotpage? what's that?

"dee" wrote:
Hi Albert
protected void Application_Error(Object sender, EventArgs e)
{
Response.Redirect("error.htm");
}
has still same result; it doesnt take me to error.htm but to dotnet page.
"Albert Pascual" <Al***********@discussions.microsoft.com> wrote in
message
news:A1**********************************@microsof t.com...
> Do this instead. On Global.asax.cs
>
> protected void Application_Error(Object sender, EventArgs e)
> {
> Response.Redirect("error.htm");
> }
>
> However should be better you use Server.Transfer("error.aspx");
>
> So you can log the error
>
> Hope it helps
>
> "dee" wrote:
>
>> Hi
>>
>> In web.config I have to the following:
>>
>> <configuration>
>> <system.web>
>> <customErrors defaultRedirect="error.htm" mode="On" />
>> </system.web>
>> </configuration>
>>
>> I generated a forced error in my page. Instead of being
>> redirected to error.htm i get the following error message form dotnet:
>>
>> **********
>> 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.
>>
>> Details: ...
>>
>> **********
>>
>> Why don't I ger redirected to my error.htm page?
>>
>> Thanks.
>> Dee
>>
>>
>>


Nov 19 '05 #5
Oh! if you are using the Global.asax.cs, set it to "Off"

Al

"dee" wrote:
Here is the page:

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.

Details: To enable the details of this specific error message to be viewable
on the local server machine, 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 "RemoteOnly". To enable the details to be viewable on
remote machines, please set "mode" to "Off".

<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="RemoteOnly"/>
</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="On" defaultRedirect="mycustompage.htm"/>
</system.web>
</configuration>
"Albert Pascual" <Al***********@discussions.microsoft.com> wrote in message
news:4D**********************************@microsof t.com...
The donotpage? what's that?

"dee" wrote:
Hi Albert
protected void Application_Error(Object sender, EventArgs e)
{
Response.Redirect("error.htm");
}
has still same result; it doesnt take me to error.htm but to dotnet page.
"Albert Pascual" <Al***********@discussions.microsoft.com> wrote in
message
news:A1**********************************@microsof t.com...
> Do this instead. On Global.asax.cs
>
> protected void Application_Error(Object sender, EventArgs e)
> {
> Response.Redirect("error.htm");
> }
>
> However should be better you use Server.Transfer("error.aspx");
>
> So you can log the error
>
> Hope it helps
>
> "dee" wrote:
>
>> Hi
>>
>> In web.config I have to the following:
>>
>> <configuration>
>> <system.web>
>> <customErrors defaultRedirect="error.htm" mode="On" />
>> </system.web>
>> </configuration>
>>
>> I generated a forced error in my page. Instead of being
>> redirected to error.htm i get the following error message form dotnet:
>>
>> **********
>> 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.
>>
>> Details: ...
>>
>> **********
>>
>> Why don't I ger redirected to my error.htm page?
>>
>> Thanks.
>> Dee
>>
>>
>>


Nov 19 '05 #6
dee
When I set it to "off" it still shows dotnet error page but now it even
shows the lines.
Here is part of the error page:

------

Arithmetic operation resulted in an overflow.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.OverflowException: Arithmetic operation resulted
in an overflow.

Source Error:

Line 327: Dim n As Int16
Line 328: n = 0
Line 329: n = 1 / n
Line 330:
Line 331: Me.DataBind()
..
..
..

"Albert Pascual" <Al***********@discussions.microsoft.com> wrote in message
news:6F**********************************@microsof t.com...
Oh! if you are using the Global.asax.cs, set it to "Off"

Al

"dee" wrote:
Here is the page:

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.

Details: To enable the details of this specific error message to be
viewable
on the local server machine, 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 "RemoteOnly". To enable the details to be viewable on
remote machines, please set "mode" to "Off".

<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="RemoteOnly"/>
</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="On" defaultRedirect="mycustompage.htm"/>
</system.web>
</configuration>
"Albert Pascual" <Al***********@discussions.microsoft.com> wrote in
message
news:4D**********************************@microsof t.com...
> The donotpage? what's that?
>
> "dee" wrote:
>
>> Hi Albert
>> protected void Application_Error(Object sender, EventArgs e)
>> {
>> Response.Redirect("error.htm");
>> }
>> has still same result; it doesnt take me to error.htm but to dotnet
>> page.
>>
>>
>> "Albert Pascual" <Al***********@discussions.microsoft.com> wrote in
>> message
>> news:A1**********************************@microsof t.com...
>> > Do this instead. On Global.asax.cs
>> >
>> > protected void Application_Error(Object sender, EventArgs e)
>> > {
>> > Response.Redirect("error.htm");
>> > }
>> >
>> > However should be better you use Server.Transfer("error.aspx");
>> >
>> > So you can log the error
>> >
>> > Hope it helps
>> >
>> > "dee" wrote:
>> >
>> >> Hi
>> >>
>> >> In web.config I have to the following:
>> >>
>> >> <configuration>
>> >> <system.web>
>> >> <customErrors defaultRedirect="error.htm" mode="On" />
>> >> </system.web>
>> >> </configuration>
>> >>
>> >> I generated a forced error in my page. Instead of being
>> >> redirected to error.htm i get the following error message form
>> >> dotnet:
>> >>
>> >> **********
>> >> 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.
>> >>
>> >> Details: ...
>> >>
>> >> **********
>> >>
>> >> Why don't I ger redirected to my error.htm page?
>> >>
>> >> Thanks.
>> >> Dee
>> >>
>> >>
>> >>
>>
>>
>>


Nov 19 '05 #7

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

Similar topics

0
by: Dan | last post by:
i have a custom control. In the page load of the control I call a procedure called binddata which gets a dataset and binds to a gird. Then in my webform I create and instance of the control and...
9
by: Nick | last post by:
the customError feature is not working. I have it setup as the help says in my web.config file. <customErrors defaultRedirect="DsAppError.aspx" mode="RemoteOnly"/> I tried in a couple...
8
by: pmud | last post by:
Hi, I am using a compare validator in asp.net application(c# code). This Custom validator is used for comparing a value enterd by the user against the primary key in the SQL database. IF the...
5
by: Graham | last post by:
I have created a custom MembershipProvider called "LassieMembershipProvider" that derives from "MembershipProvider". This providor is located in a Businesslogic layer dll called...
0
by: Pavan | last post by:
My name is Pavan and I am a software engineer working on ASP .Net web development. Currently I am using .Net 2.0 Professional Edition to develop my web pages. I have a problem
1
by: Stu | last post by:
Hi, Im using vis studio 2003 and I think wse is out of the question as clients could be using java which doesnt support it. So I managed to find some code which allows you to develop a custom...
15
by: rizwanahmed24 | last post by:
Hello i have made a custom control. i have placed a panel on it. I want this panel to behave just like the normal panel. The problem i was having is that the panel on my custom control doesnt...
5
by: Author | last post by:
I followed the example at http://support.microsoft.com/kb/308001/EN-US/ and created my own HttpHandler. Here is the code: using System.Web; namespace MyNameSpace { public class...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
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
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
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
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,...
0
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...

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.