Posts Tagged ‘ gadget ’

Mahesh: PHP Error Handling

November 3, 2009
By

PHP Error Handling . error_reporting : In PHP 4 and PHP 5 the default value is E_ALL & ~E_NOTICE. This setting does not show E_NOTICE level errors. You may want to show them during development. E_ALL (integer) All errors and warnings, ...

Read more »

SourceField.blogspot.com: try catch python: error handling in python

September 2, 2009
By

try catch python: error handling in python. simple error handling in python: try: .... your code here .... except Exception, e: print "Error",i,e. Labels: python. 0 comments: Post a Comment · Older Post Home. Subscribe to: Post Comments ...

Read more »

ASP.NET customErrors and real HTTP status codes (404s not 302s)

August 3, 2009
By

NET, Error Handling . Ever client always asks for error handling. They always want to display a “friendly” error page to their customers/viewers, other than the ASP.NET yellow “Application Error in '/'”…you know what I'm talking about! ...

Read more »

My daily .Net notes.: Handling errors gracefully with the Global.asax

August 2, 2009
By

protected void Page_Load(object sender, EventArgs e) { if (Session != null) { // Handle the displaying of the error } }. Posted by Michael Leduc at 1:29 PM. Labels: ASP. NET, Error Handling ...

Read more »

Sql And Dot Net: Error Handling using Try Catch in SQL

June 25, 2009
By

Using TRY...CATCH to Rollback a Transaction in the Face of an Error With SQL Server 2005's TRY...CATCH block, Try catch block is used in simple statement with transaction, these types of scripts are greatly simplified. ...

Read more »

Handling global errors in ASP.NET using Application_Error event

June 19, 2009
By

Message, True) End Sub The above code will find the last error occurred, send an email to webmaster and then redirect the user to an Error page. Posted by Rajesh at 5:02 AM. Labels: Application_Error, ASP. NET, Error Handling ...

Read more »