Welcome!

Some important JavaScript functions and their use.

var objStack = [] objStack.push(2); objStack.push(5); objStack.push(8); So here objStack will behave as a Stack object & it will follow FIFO (First-In First-Out) concept. We can access the value of…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Creating a custom “Share on Facebook” button

At the present date you are unlikely to come across any content page that does not provide option to save the URL in Social Bookmarking sites or Social Networking sites. As a…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
How to add a TemplateField to a GridView dynamically?

GridView is a very powerful and highly customizable control provided by ASP.NET. The process of adding a GridView control dynamically to a page is almost same as of the other…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
jQuery and Asynchronous Postback with UpdatePanel Issue

What  If you are using jQuery in your application then you may be familiar withdocument.ready() function of jQuery. This function executes after all the elements are loaded in the page.…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Calling external WebService & parsing its XML Response using Salesforce's Apex

In this Tip, “ is used as external web service , which takes global IP as its request parameter (e.g Then it returns XML data as its response . The…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Scroll to a specific position in UIScrollView

Dragging the scroller to a specific location automatically when user scrolls through the scroll view the very first time. If we have the requirement of dragging the scoll automatically to…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Bulk Copy with Oracle using Array Binding

In an application one of the biggest overheads of data insertion into the database is making round trips to the DB for insertion purpose. ADO.Net provides a mechanism to copy…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
To display text words from a list of words in comma separated form in small div with Javascript

Description While designing websites we often come across situations where we have to display data in limited space  programmatically and we have to split data into chunks to accommodate them.…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Identifying Malware: Virus, Worms, Trojans and Spyware

This tip is intended to help you identify, classify malware and eliminate them from your computer. To make it more convenient I have divided the tip into two parts. This…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!