Posts Tagged ‘ gadgets ’

Dan Dar3: XBMC Python tips – how to get build version & date

March 20, 2010
By

XBMC Python tips – how to get build version & date. Python code: import xbmc result = xbmc.executehttpapi('GetSystemInfo(120;121)') system_info = result.split(' ') print "Version = " + system_info print "Date = " + system_info ...

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 »

Me & My Little Techie…….: Try Catch Error handling

May 3, 2008
By

In SQL Server 2005 there is new era to Error handling. When i was working in Java i was thinkin when i am going to have try/catch concepts in SQL Server...Now we have it in SQL Server 2005. Try/Catch, similar to VB. Net error handling ...

Read more »