Welcome!

How to use “List View” component in Wicket Framework ?

List View is just a way to show your data in a table like structure with as many as rows and columns. In Wicket framework its very easy to use.…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
How to delete duplicate rows in a table using CTE

The “ROW_NUMBER()” in the above query returns the sequential number of a row within a partition of a result set, starting at 1 for the first row in each partition.…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
How to check session timeout through AJAX call?

Now a day most of the applications are running on AJAX. We are making huge use of AJAX to provide rich internet experience. Think of a situation, where your application…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Sending Multiple Records As XML To SQL Server Stored Procedure

We may need to send multiple records to database from code behind, at that situation we will make multiple requests to db. If the number of records increased than it…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Dynamically Adding/Deleting Rows To Table

We can add/delete rows to asp.net table component dynamically with preservation of input data. AddNewRow.aspx Page: function LinkButtonClick(lbID) { var ind = lbID.split("Row_"); ind = ind.split("Col_"); document.getElementById("").value = ind; document.getElementById("").click();…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Java Serialization and need for a no-arg constructor

Before coming to the topic let us discuss some basics of serialization. What is ‘Serialization’? Serialization is a procees of saving the state of an object by converting it into…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Render Prev & Next Record From Show Page in Rails

Scenario: In Rails we can click individual record and open it from index page but to open the next record we need to go back to index & click another…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
How to make System Calls from Java

System call is a mechanism to execute command line commands from an application. When can we make System calls? From a Java application we can make system calls in such…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
How To Create A PDF By Clicking A Button Using Suitescript

First, I will add a button in ‘BeforeLoad’ event of ‘user-event script’.  Here, nlapiResolveURL(type, identifier, id, displayMode) API is used to create a URL on-the-fly by passing URL parameters from within…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!