Runtime Debugger

kannan M ambadi

Browse by Tags

All Tags » .NET 2.0 » Code Perfromance (RSS)
Improve ASPX web page performance by combining Skin & CSS
There has been numerous discussions happened on web site performance, ranging from UI design to Site H osting. Out of this, one of the important step is, to reduce the size of Http Response size. Optimizing Http Response will considerably reduce the page...
Nullable types and ?? operator
This time, i would like to discuss about a cool feature of C# 2.0. As you know, some database operations return null values and results into throwing exceptions unless you handled well in your business logic. .Net 2.0 has been solved by introducing nullable...
Exporting Dataset as CSV
Hi Everyone, Below given an easy way to export data from a dataset as CSV(comma seperated values) . At first, it converts the datatable to html table format and then writes data as output stream. We need to set the Content-Type of Response object as Excel...
Simple way to check your code performance
Hi guys, Of course, we all know foreach loop takes more time than for loop and there are lot of similar scenarios in .Net. Even if it takes lot of time, we'll be forced to use foreach loop at some cases. So it'll be better, if we come to know the time...
More Posts