Welcome!

Retrieving Data From Excel Files Having Multiple Worksheets In ASP .NET

While working with ASP.NET we may come across a situation where we need to import some data from excel files having multiple work sheets and need to insert/update the data…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Reduce image size using PHP GD functions

In the above code imagejpeg($im, “VW_Beetle_Sport_Concept_by_husseindesign_interlaced.jpg”, 90); is the function which will reduce the image size; We can change the third parameter sent to the function call which is currently…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Prevent cross-site scripting attacks in ColdFusion.

ColdFusion has some very smart feature one of them is script-protect. It will help you protect your script from cross-site scripting(XSS attack). Let me show you how easy it is.…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Avoiding if condition in CUDA

Branching is one of the most time consuming operation in CUDA ( in general as well). For example, See below CPU code and GPU code … void CPUCode( int* input, int* output,…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Document merging in C#.NET

Some times during application development we need to generate a MS Word document from a predefined format and some custom data. The predefined format is generally called as Template. This…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
How to find Controls In Wizard Navigation Steps

Sometimes we need to find a control from Wizard navigation steps. For that we need to use FindControl() method but we fail in this case, as we always get null…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
How to sort & filter out DataTable in ASP.NET ?

In ADO.NET we deals with DataTable and DataSet as the representations of different table of our actual database. So we can write complex queries to fetch information from different table…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Paging in JQGrid using WCF service

Recently I was working with jQGrid when I came across a major block, the solution of which I now wish to share through this tip. In case you don’t know,…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Window.resize event in IE

Window.resize event in IE There are some cases when we will have to do something when the user will resize the window. This is very easy to do with the…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!