Control Name
-
hi everyone, Their is a control that I want to use but I don't know the name or from where I can get it. This control is: we can write in it like a textbox but it store the previous entries so we can choose from the previous values like a drop down list. what is the name of this control? Thanks
-
hi everyone, Their is a control that I want to use but I don't know the name or from where I can get it. This control is: we can write in it like a textbox but it store the previous entries so we can choose from the previous values like a drop down list. what is the name of this control? Thanks
-
hi everyone, Their is a control that I want to use but I don't know the name or from where I can get it. This control is: we can write in it like a textbox but it store the previous entries so we can choose from the previous values like a drop down list. what is the name of this control? Thanks
Hi there, In a window-based application, this's probably a combox control, however, in ASP.NET there's no buit-in combox control, there are only dropdownlist or listbox controls. If want to have that kind control, you can develop a custom control which has the same behaviour by customizing existing standard controls. This is one of examples that you can see: http://www.codeproject.com/aspnet/combobox.asp[^]