| Author: PRAVEEN PANDEY 29 Nov 2008 | Member Level: Silver | Rating: Points: 4 |
Hi Komathi,
i don't have idea about Ajax but if you want to bind Dropdown list you can bind like this.
first create or open your connection. after that take data from database in reader. after this you have to write like .
DropdownList.DataSource =dr; DropdownList.DataTextField="ColumnName"; DropdownList.DataValueField="ColumnName"; DropdownList.Databind();
Regards, Praveen
|