List/Grid

Tutorial Subscribe to Tutorial

How to create basic wordpress plugin

How to create basic wordpress plugin

There are many things that you can do with your wordpress plugin to enhance your website that can also be used by other website owners. In this post we will… Read more »

How to create Download File button using Java Servlets

How to create Download File button using Java Servlets

Before you read this post i would recommend you to go through these earlier post to understand what we did and what we are going to do. Convert SVG to… Read more »

How to use Java Servlets and Ajax

How to use Java Servlets and Ajax

In previous post we saw an example of how to convert SVG to PNG using Java Servlet. You can either use a submit button to submit form to servlet or… Read more »

Convert SVG to PNG using Java Servlet

Convert SVG to PNG using Java Servlet

I am going to cover several aspects of this project in other posts. In this post i will only cover how to convert SVG to png. I will use Batik… Read more »

Basic Html Interview Questions and Answers

Define URL Uniform Resource Locator; an address that specifies the location of a file on the Internet What is a tag? In HTML, a tag tells the browser what to… Read more »

Passing parameters to window in Titanium appcelerator

Titanium is a JavaScript based framework, which encapsulates the native APIs and exposes them using JavaScript interfaces. to open a new window in Titanium. var win = Ti.UI.createWindow({ id:’window’, url… Read more »

A String quiz in C#

How many string objects the below method will create? string GeneratePhrase() { string phrase = “”; Random rnd = new Random(); for (int i = 0; i < 1000; i++)… Read more »

Get the default/relevant content of a webpage – C#

I was working on an application, where I am required to scrap the pages to get the relevant content as well as image from a webpage. I tried different logics,… Read more »

Get Images from a web page C#

There are few things we might need to consider while extracting images from a webpage. what all images do we want from webpage, i.e., images with alt and title tag…. Read more »

Merge cells in GridView ASP.NET

To group cells in ASP.NET GridView, like the  one you see below Event Type Start Date End Date QA T1 10/07/2012 10/14/2012 T2 10/02/2012 10/17/2012   sort the list which… Read more »