Limit to List...not?

  • Thread starter Thread starter Phil Hellmuth
  • Start date Start date
P

Phil Hellmuth

Does .NET have a feature so that I can create a combo box where the user
is NOT limited to the contents of the list? In other words, can I
create a drop-down where, besides the option of selecting from the lists
values, the user can also enter their own text?

Thanks in advance.
 
Phil Hellmuth said:
Does .NET have a feature so that I can create a combo box where the user
is NOT limited to the contents of the list? In other words, can I create
a drop-down where, besides the option of selecting from the lists values,
the user can also enter their own text?

Thanks in advance.

Thanks is what a combo box is defined to be. When the user can only pick
from a given list, it is called a select box.

Shellt
 
Phil said:
Does .NET have a feature so that I can create a combo box where the user
is NOT limited to the contents of the list? In other words, can I
create a drop-down where, besides the option of selecting from the lists
values, the user can also enter their own text?

Thanks in advance.

There is no combo box in html.

You would have to make your own, perhaps by having an option in the
select that replaces it with a textbox.
 
Back
Top