Friday, April 22, 2011

C# class library for exporting data to CSV/Excel file - CodeProject

I found this library which exports .NET Datatable to equivalent Excel file..Its very easy to use.


C# class library for exporting data to CSV/Excel file - CodeProject

How To make Bootable USB

A lot of my friends wanted to know how to make a boot-able USB without using any software so friends here it is. It works, I have used it myself many times.

Enjoy......

How To make Bootable USB

Thursday, April 21, 2011

Wednesday, April 20, 2011

ASP.Net Programming Interview Questions and Answers

Its a very good collection of questions and answers that will not only help you in your job interview but will also help you code.
hats off to writer who wrote it...

ASP.Net Programming Interview Questions and Answers

ASP.NET 2.0 Interview Questions - Intermediate Level

ASP.NET 2.0 Interview Questions - Intermediate Level

How to debug an ASP.NET application that was not written with Visual Studio.NET and that does not use code-behind?


Start the DbgClr debugger that comes with the .NET Framework SDK, open the file containing the code you want to debug, and set your breakpoints. Start the ASP.NET application. Go back to DbgClr, choose Debug Processes from the Tools menu, and select aspnet_wp.exe from the list of processes. (If aspnet_wp.exe doesn't appear in the list,check the "Show system processes" box.) Click the Attach button to attach to aspnet_wp.exe and begin debugging.
Be sure to enable debugging in the ASPX file before debugging it with DbgClr. You can enable tell ASP.NET to build debug executables by placing a
<@ Page Debug="true" >; statement at the top of an ASPX file or a statement in a Web.config file.