Click here to Skip to main content
15,912,204 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionJavascript and Datagrid Pin
samuari25-Jul-06 9:44
samuari25-Jul-06 9:44 
AnswerRe: Javascript and Datagrid Pin
Ista27-Jul-06 4:36
Ista27-Jul-06 4:36 
Question.aspx upload Pin
kirthikirthi25-Jul-06 9:02
kirthikirthi25-Jul-06 9:02 
AnswerRe: .aspx upload Pin
Guffa25-Jul-06 11:12
Guffa25-Jul-06 11:12 
GeneralRe: .aspx upload Pin
kirthikirthi25-Jul-06 11:23
kirthikirthi25-Jul-06 11:23 
AnswerRe: .aspx upload Pin
Guffa25-Jul-06 20:38
Guffa25-Jul-06 20:38 
GeneralRe: .aspx upload Pin
Amit Agarrwal25-Jul-06 20:48
Amit Agarrwal25-Jul-06 20:48 
QuestionError Handling with customErrors tag Pin
mrinmayeek25-Jul-06 8:41
mrinmayeek25-Jul-06 8:41 
Hi,

In my web application (framework 1.1), I have a try-catch block handling errors. When an error occurs it is logged using Logging of EL. Later I also need to navigate to a CustomErrorPage created. Here is how the web.config tag looks like.

<customerrors mode="RemoteOnly" defaultredirect="CustomErrorPage.aspx">

The catch portion looks like this:
catch(Exception ex)
{
#region Log DS Retrieval Error
LogEntry l = new LogEntry();
l.Severity = Severity.Error;
l.Category = "General";
l.Message = String.Format("Encountered error during data retrieval {0}", ex.ToString());
l.Priority = 5;
l.EventId = 13651;
l.Title = "Data Retrieval";
Logger.Write(l);
#endregion

throw ex;
}

When I use the mode as "RemoteOnly" it does not navigate to the error page nor does it give the detailed error page. It just displays error details like error is not handled. When the mode is set to "On" it navigates to the Error Page stipulated.
Any ideas/input on how to incorporate the RemoteOnly mode to display detailed error page on the Webserver and Custom Error Page for the user?

Thanks
Minu
Questionadded dynamic row with textbox to gridview but missing viewstate on postback Pin
silverfox_118825-Jul-06 8:15
silverfox_118825-Jul-06 8:15 
AnswerRe: added dynamic row with textbox to gridview but missing viewstate on postback Pin
ToddHileHoffer25-Jul-06 9:50
ToddHileHoffer25-Jul-06 9:50 
AnswerRe: added dynamic row with textbox to gridview but missing viewstate on postback Pin
silverfox_118825-Jul-06 11:50
silverfox_118825-Jul-06 11:50 
GeneralRe: added dynamic row with textbox to gridview but missing viewstate on postback Pin
ToddHileHoffer26-Jul-06 2:19
ToddHileHoffer26-Jul-06 2:19 
GeneralRe: added dynamic row with textbox to gridview but missing viewstate on postback Pin
silverfox_118826-Jul-06 19:11
silverfox_118826-Jul-06 19:11 
GeneralRe: added dynamic row with textbox to gridview but missing viewstate on postback Pin
Ista27-Jul-06 6:55
Ista27-Jul-06 6:55 
GeneralRe: added dynamic row with textbox to gridview but missing viewstate on postback Pin
silverfox_11882-Aug-06 5:03
silverfox_11882-Aug-06 5:03 
QuestionDataBinder output Pin
TheMajorRager25-Jul-06 8:00
TheMajorRager25-Jul-06 8:00 
AnswerRe: DataBinder output Pin
ToddHileHoffer25-Jul-06 9:45
ToddHileHoffer25-Jul-06 9:45 
GeneralRe: DataBinder output Pin
TheMajorRager25-Jul-06 11:36
TheMajorRager25-Jul-06 11:36 
QuestionDifference Pin
kjosh25-Jul-06 7:28
kjosh25-Jul-06 7:28 
AnswerRe: Difference Pin
Guffa25-Jul-06 8:20
Guffa25-Jul-06 8:20 
QuestionRedircet Page Pin
kirthikirthi25-Jul-06 7:07
kirthikirthi25-Jul-06 7:07 
AnswerRe: Redircet Page Pin
enjoycrack29-Jul-06 6:44
enjoycrack29-Jul-06 6:44 
QuestionCharts and graphs using .NET Pin
TheMajorRager25-Jul-06 6:52
TheMajorRager25-Jul-06 6:52 
AnswerRe: Charts and graphs using .NET Pin
minhpc_bk25-Jul-06 20:03
minhpc_bk25-Jul-06 20:03 
Questionbuild via coding Pin
sund7wells25-Jul-06 5:20
sund7wells25-Jul-06 5:20 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.