Web Development

A Simple JavaScript To Get English Language Definition From A Dictionary

2009-05-19
English is not my first language so I use online dictionaries frequently as a part of my daily routine to clarify and learn unfamiliar words as I read through articles in the Internet.
I have been using www.ditionary.com for a long time and I had the plan to make this work easy by creating a small [...]

C# ASP.NET - GridView : How to Use Checkbox in Gridview to Select Multiple Rows

2009-01-06
I wanted to select multiple rows of the grid view using check boxes to select each row.
In this post I will discus how and what I did to achieve this goal…
I used a template column which holds a check box to select or de-select a row in the grid view.
Adding a Template Column:
There are several [...]

ASP.NET - AutoPostBack : What is AutoPostBack and How AutoPostBack Works

2008-12-26

Today I was experimenting on a grid view where I was trying to select multiple rows of the grid view using a check box column.
I wrote some code in the CheckedChanged of checkbox but then I found that the code was not executed when the state of the checkbox is changed.
So I did a [...]