ErrorPage property of System.Web.UI.Page

  • Thread starter Thread starter Jeff Robichaud
  • Start date Start date
J

Jeff Robichaud

Hi,

It is said the ErrorPage property of System.Web.UI.Page defines the target
page where the browser will be redirected when un unhandled exception
occurs. Doesn't seem to work...well it works fine at the application level
(using web.config) but I thought that we could do it at the page level too
?? Maybe I misunderstood something...
 
Jeff:
Make sure you have your customErrors mode="On" in the web.config. Otherwise
everything should work fine.

Karl
 
Thats' it! Thanks. I had it to "RemoteOnly"...

Karl Seguin said:
Jeff:
Make sure you have your customErrors mode="On" in the web.config.
Otherwise
everything should work fine.

Karl
 
Back
Top