Sohail Ali
Sohail Ali

Reputation: 468

On text change create automatically dropdownlist

I am trying to create Dropdownlist when text change in TextBox in c#.

without using dropdownlist.

<asp:TextBox ID="TextBox1" runat="server" Tag="Original Data"></asp:TextBox>

I want to modify this tag and generate automatic dropdownlist

Upvotes: 1

Views: 87

Answers (1)

Nazim Ali
Nazim Ali

Reputation: 180

You need to create UserControl to modify this tag here is example for modifying ASP.NET tag http://www.codeproject.com/Articles/322923/Dropdown-TextBox

Upvotes: 1

Related Questions