Wednesday, April 07, 2010
Thursday, February 11, 2010
Erepublik
Tuesday, February 17, 2009
Saturday, January 03, 2009
Monday, November 03, 2008
Practical Jokes
Tuesday, October 14, 2008
Friday, October 10, 2008
Thursday, September 27, 2007
Friday, September 21, 2007
Friday, August 24, 2007
MCTS - Web Application Development
Wednesday, September 13, 2006
Web Site Projects V Web Application Projects
Friday, May 05, 2006
Its Life Or Death @ 240
Thursday, April 13, 2006
Bangladesh Played Well But…
Monday, March 20, 2006
Quotes
Today, I come across a couple of worth mentioning quotes.
He who praises you for what you lack wishes to take from you what you have.
- Don Juan Manuel
Happiness keeps you Sweet,
Trials keep you Strong,
Sorrow keeps you Human,
Failure keeps you Humble,
Success keeps you glowing,
But only God keeps you going.
Wednesday, March 15, 2006
DropDownList V ComboBox
In ASP.NET, the DropDownList can be bound as:
this.dropDownList.DataSource = dataSet;
if (dataSet.Tables[0].Rows.Count > 0)
{
this.dropDownList.DataTextField = "Text";
this.dropDownList.DataValueField = "Value";
}
this.dropDownList.DataBind();
Where as in Windows Application, the DropDownList can be bound as:
this.comboBox1.DataSource = dataSet.Tables[0];
this.comboBox1.DisplayMember = "Text";
this.comboBox1.ValueMember = "Value";
The difference between the two is that in ASP.NET, DropDownList can be bound with a DataSet provided that DataSet contains only one DataTable where as in Windows Application, ComboBox can only be bound with a DataTable. The "Text" and "Value" are the columns in the DataTable.