1
Answer

adding text to drop down list

naughtygal7

naughtygal7

20y
1.9k
1
Hi! I have a drop down list which I am populating from a database. What I need to do is that when the focus is on the datagrid, the user should be able to type in some text. Can any one give me any idea on how to do this? Thanx.
Answers (1)
0
ganesh.ha

ganesh.ha

NA 16 0 20y
Hi Anjali, your question is bit confusing. This is what I understand 1. You are binding a Dropdownlist with the data from the database for eg : Dropdownlist1.datasource = "datareader1" Dropdownlist1.datatext = "column_name" Dropdownlist1.datavalue="some_value" Dropdownlist1.databind() datareader1.close() 2. How do you want to insert text to the dropdownlist ? If you want any new text to be added, you can use pretty simple code dropdownlist1.items.insert(position,"text") 3. when you have the focus on datagrid, how do you want to add the text ? Please explain your requirements more clearly regards, Ganesh