Blog Detail
Tips and Techniques for Web Development using MS Technologies.
http://karthick-ramanan.blogspot.com/
My technical blog will provide some tips and techniques for Web Developers using Microsoft technologies. Also have some additional information on Javascript and Database Stored Procedures.
Recent Posts
Application Level Error Handling in .NET
There were many chances for the occurrence of error in a .NET web application. We can easily fetch those errors and handle the users in a friendly way with the Global.asax file.The event Application_Error in the Global.asax file deals with this. You ...
AJAX implementation using POST method in .NET
Here is where the real Ajax is implementation happens. In fact the .Net framework itself supports the partial page posting using Update Panel and etc. But what actually happens here is, the whole contents of the page goes to the server and comes back...
Printer Friendly Button in JS
I was so pleased with Javascript. In an printer friendly version page if you wanna a Print button which will direct you for printing, then this is the simplest way.Here we go.EG: In the anchor tag just call the javascript function window.print().java...
Text Formatting made Easy in ASP.NET
In one of my project there was an requirement to display the Phone Numbers formatted according to US Standards(eg: 123-456-7890).I initially thought I have to insert the '-' symbol at the index values. But my goodness, this was made so easy in .Net S...
Reseed Identity Column in a Table
Today in our web application we have to make a major release to production. Everything went fine but we have lot of test entries in the production. Our identity column of the User table increased from 1342 to 1456 because of the test entries. Myself ...
Basic SQL System Stored Procedures to be known by every Developer
There are large number of System Stored Procedures. Here are few stored procedures that should be known by every developer who work with Databases. And these stored procedures will be very handy at times(Particularly for me.My favorites :) ).sp_Hel...

