jagmit
September 30th, 2009, 11:52 AM
i have a code...
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
for (int i = 1; i <= 100; i++)
{
ListItem itm = new ListItem("i");
DropDownList1.Items.Add(itm);
}
}
I need to add values to a dropdownlist from 1 to 100...
but i get 100 i's displayed..
Please tell me how..
THanks
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
for (int i = 1; i <= 100; i++)
{
ListItem itm = new ListItem("i");
DropDownList1.Items.Add(itm);
}
}
I need to add values to a dropdownlist from 1 to 100...
but i get 100 i's displayed..
Please tell me how..
THanks