vote up 0 vote down star

Here's my existing code:

 <asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True" 
            DataSourceID="dsEmployees" DataTextField="Last_First" 
            DataValueField="EmpNum" 
            onselectedindexchanged="DropDownList1_SelectedIndexChanged">
 </asp:DropDownList>
flag

68% accept rate
1  
And your question is...? – Ed Swangren Jul 13 at 20:10
How can I use the existing ddl to populate new data? – Yonita Jul 13 at 20:11
1  
@Yonita: It would be helpful if you fleshed out the question a bit more. – Andrew Hare Jul 13 at 20:12
Is there a way to populate the NEW item from dropdown list? – Yonita Jul 13 at 20:13

2 Answers

vote up 0 vote down check

Yonita, you need some more moving parts. You need a datasource to bind to, for instance.

Have a look at the Data Access tutorials on the ASP.NET website:

http://www.asp.net/learn/data-access/

link|flag
Hey this is cool link. Thanks Robert. A+ – Yonita Jul 13 at 20:19
vote up 0 vote down

DropDownLists end up being rendered as <select> tags in HTML. These do not allow for data entry of new values. If you're looking for something similar to a ComboBox (a textbox and a listbox combined into the same control) then you'll need to find a third-party javascript implementation that is acceptable to you; there is no control which provides that functionality in HTML or the .net framework.

link|flag
Thank you Ken. I just thought there's a way to build a dynamic dropdown list with ASP. Thanks for the input. :) – Yonita Jul 13 at 20:17

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.