Welcome!

How to append “www” to your site domain using ColdFusion?

Some times it becomes important to add “www” to your site domain. There might be many more reasons to do so. I am just citing one example. Site name “domain.com”…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
How to create a custom error handler

User can  set his own exception handler for complete application and also for all uncaught exception. Errors are the part of every programming language and normally programmers don’t want to…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
How to minimize the Method Overloading in C# 4.0

We can avoid creating many overloads of a method by specifing default values for some parameters. public static void EmployeeDetails(int empId, string address="BBSR", double salary=15000) { } static void Main(string[]…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Browse Files Under a directory Using GridView in a web application

Suppose, in a web application we need to create some files (say xml reports) and then show it to the user. One of the simpler ways to view those files would…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!