D dee Jun 17, 2005 #1 Hi How can I display a custom page instead of the error page generated by dotnet? Thanks. Dee
M Mythran Jun 17, 2005 #2 dee said: Hi How can I display a custom page instead of the error page generated by dotnet? Thanks. Dee Click to expand... There are a couple of ways to do this... http://www.codeproject.com/aspnet/customerrorsinaspnet.asp http://samples.gotdotnet.com/quickstart/aspplus/doc/handlingerrs.aspx http://www.dotnet247.com/247reference/articles/1/8895.aspx HTH, Mythran
dee said: Hi How can I display a custom page instead of the error page generated by dotnet? Thanks. Dee Click to expand... There are a couple of ways to do this... http://www.codeproject.com/aspnet/customerrorsinaspnet.asp http://samples.gotdotnet.com/quickstart/aspplus/doc/handlingerrs.aspx http://www.dotnet247.com/247reference/articles/1/8895.aspx HTH, Mythran
R Ryan Ternier Jun 17, 2005 #3 Edit your Web.Config: <configuration> <system.web> ... <customErrors mode="RemoteOnly" defaultRedirect="error.aspx" /> </system.web> </configuration> /RT
Edit your Web.Config: <configuration> <system.web> ... <customErrors mode="RemoteOnly" defaultRedirect="error.aspx" /> </system.web> </configuration> /RT