I faced this when developing SSRS report when user put period from 1/2/2012 to 31/12/2012. note this date in “dd/MM/yyyy” format, when passing these two dates to DateDiff() SQL function the result will be 10 months. DATEDIFF(month, ’2/1/2012′, ’12/31/2012′) This…
How to backup Windows registry
As a geek you tried at least one time to edit your Windows registry, and sometimes what you did break your Windows or Application, then you start to figure out what I did to roll it back to normal. To…
Using Notification in ASP.NET WebForms
I always asked myself, how can I show a neat notification and call it from Page code behind? I want to call this notification after doing something in code behind, for example notify user that “Record Inserted Successfully” and this…