Welcome!

Use Image Tag instead of using HTML Image Tag

When building an application in RoR, we may need some images on the web page. In RoR application images are stored in ‘public/images/’ folder and we need to embed those…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Using jQuery Plugin to implement scrollbar in iPad,

Since normal scrollbar implemented for browser does not work in iPad, we can implement it using JScollPane which is a jQuery plugin. After downloading the above files store them in respective…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Create Form Using Suitelet

How to create a simple form for a new customer in NetSuite account (using Suitelet script) and then redirect to the newly created customer record? I want to create a…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
How to show Empty Template in ASP.NET Repeater control?

For showing data in a list format we may use Gridview or Listview or Repeater. But suppose no data is there for a particular filter or in a particular instance…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
To refresh Gridview Data regularly, without any page – postback.

First, create a web-application using Visual-Studio 2005 or later. (Note: For visual-studio 2005, we’ll have to make this web-application ajax enabled by selecting “Asp .Net Ajax-Enabled Web-site”Template.Do note that in case…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
PGP Encryption & Decryption in C#

To start with PGP encryption we nead to download assembly of “BouncyCastle”(bccrypto-net-1.7-bin.zip)  from the following link Add this assembly to your applicaiton. PGP Encryption We will first discuss about PGP…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
How to use the Transact-SQL functions CONTAINSTABLE and CONTAINS to do a search on a full-text enabled table

Example: SELECT Country.Country_Name, Country.Country_Description FROM Country WHERE CONTAINS(Country_Description, ‘sea’) The above query results in Country_Name and Country_Description columns where the description column in the index includes the word “sea”. If we want to…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Using UJS in will_paginate gem in Rails3

The will_paginate ( gem is a popular gem, that developers usually use for the pagination. It populates the links for the pagination and upon clicking the link, it will load…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
How to fetch and display data from a custom object on VisualForce page in SalesForce.

As a beginner I face difficulties in SalesForce even when with simple problems like fetching data and displaying them on the VisualForce page. Now that I have some knowlede on…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!