DotNetShoutout - Stories tagged with error handling
11
Shouts

Error Handling and CustomErrors and MVC3, oh my!

published 805 days, 5 hours, 43 minutes ago posted by tduponttdupont 810 days, 9 hours, 7 minutes ago
Sunday, March 06, 2011 11:00:47 PM GMT Tuesday, March 01, 2011 7:37:27 PM GMT
You can now handle errors inside of the MVC pipeline. The new MVC3 GlobalFilters and HandleErrorAttributes give you direct programmatic control of handling your 500 errors in the same way that ASP.NET and CustomErrors give you configurable control of handling your HTTP error codes. Think of it as a routing table specifically for your Exceptions, it's pretty sweet! (more)
category: Web Dev | clicked: 6 | comment | | source: community.codesmithtools.com
tags: MVC3, error handling, CustomErrors
2
Shouts

ASP.NET MVC Error Handling using the HandleError Filter

published 845 days, 9 hours, 9 minutes ago posted by JudoJudo 845 days, 14 hours, 49 minutes ago
Tuesday, January 25, 2011 7:35:38 PM GMT Tuesday, January 25, 2011 1:55:39 PM GMT
ASP.NET Errors can be effectively handled using the HandleError filter, which specifies how exceptions which are thrown in a controller method are to be dealt with (note that ASP.NET MVC supports method filters, which allow for annotating controller methods to change their behavior). Prior to using the HandleError filter, you will need to enable custom error handling for your ASP.NET MVC app in the web.config file by adding the below line in the system.web section: The below code snippet show the ... (more)
category: How To | clicked: 1 | comment | | source: www.aspnet101.com
tags: ASP.NET MVC, handleerror filter, error handling, MVC
3
Shouts

ASP.NET Error Handling: Creating an extension method to send error email

published 868 days, 23 hours, 53 minutes ago posted by http://jalpesh.blogspot.com/http://jalpesh.blogspot.com/ 871 days, 7 hours, 56 minutes ago
Sunday, January 02, 2011 4:51:00 AM GMT Thursday, December 30, 2010 8:48:37 PM GMT
Error handling in asp.net required to handle any kind of error occurred. We all are using that in one or another scenario. But some errors are there which will occur in some specific scenario in production environment in this case We can’t show our programming errors to the End user. So we are going to put a error page over there or whatever best suited as per our requirement. But as a programmer we should know that error so we can track the scenario and we can solve that error or can handle error. In th... (more)
category: Web Dev | clicked: 1 | comment | | source: jalpesh.blogspot.com
tags: error handling, Error
8
Shouts

Event Handling in Silverlight - Dinesh's Blog

published 990 days, 16 hours, 42 minutes ago posted by jacobsebastianjacobsebastian 990 days, 22 hours, 39 minutes ago
Thursday, September 02, 2010 12:02:39 PM GMT Thursday, September 02, 2010 6:05:00 AM GMT
In the previous article I described what are the different Layout Management Panels in Silverlight and how and when they are used. In this article I will try to describe how to add/manage events in Silverlight. (more)
category: Metro | clicked: 1 | 1 comment | | source: beyondrelational.com
tags: Silverlight, dotnet, error handling, ASP.NET
13
Shouts

Tips and Tricks for Error Handling in ASP.NET Web Applications - Jacob's Blog

published 1009 days, 14 hours, 56 minutes ago posted by jacobsebastianjacobsebastian 1011 days, 19 hours, 29 minutes ago
Saturday, August 14, 2010 1:48:04 PM GMT Thursday, August 12, 2010 9:14:56 AM GMT
This post highlights some of the most common Error Handling techniques in ASP.NET Web Applications.. (more)
category: Web Dev | clicked: 22 | comment | | source: beyondrelational.com
tags: .NET, internet, error handling, ASP.NET
7
Shouts

TSQL: Error handling with Try Catch from a .NET perspective « Mehroz’s Experiments

published 1100 days, 16 hours, 32 minutes ago posted by mehrozmehroz 1103 days, 14 hours, 9 minutes ago
Saturday, May 15, 2010 12:12:16 PM GMT Wednesday, May 12, 2010 2:34:54 PM GMT
Starting with SQL 2005, we can handle unexpected situations in our TSQL scripts/procedures/functions in an structured manner using the famous Try/Catch methodology, similar to what we are used to in our object oriented programming languages (C#, Java, etc). This post will describe certain similarities and how to enjoy the features that look absent at the first look. (more)
category: Data | clicked: 0 | comment | | source: smehrozalam.wordpress.com
tags: finally, Exception Handling, error handling, TSQL, catch, try