Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP .Net Web Controls > Autocomplete for Webcontrol

Reply
Thread Tools

Autocomplete for Webcontrol

 
 
Anandan
Guest
Posts: n/a
 
      02-23-2005
In my webform i have TextBox webcontrols, how to enable the AutoComplete feature for this control?

From http://www.developmentnow.com/g/15_0...ebcontrols.htm

Posted via DevelopmentNow Groups
www.developmentnow.com/g
www.developmentnow.com
 
Reply With Quote
 
 
 
 
Teemu Keiski
Guest
Posts: n/a
 
      02-23-2005
Hi,

if you mean the one built-in with IE (when user has also enabled it) you can
get that quite easily:

<asp:TextBox ID="TextBox1" AutoComplete="on" Runat="server" />

However, if you mean something like you'd want to bind the values (like
DropDownTextBox) you need to look for a custom control somewhere. Web is
full of them.

--
Teemu Keiski
ASP.NET MVP, Finland



"Anandan" <> wrote in message
news:e7bf6c18-56c4-47a3-bfcd-...
> In my webform i have TextBox webcontrols, how to enable the AutoComplete
> feature for this control?
>
> From
> http://www.developmentnow.com/g/15_0...ebcontrols.htm
>
> Posted via DevelopmentNow Groups
> www.developmentnow.com/g
> www.developmentnow.com



 
Reply With Quote
 
 
 
 
Wilco Bauwer
Guest
Posts: n/a
 
      02-23-2005
http://wilcoding.xs4all.nl/demos/smarttextbox

This is a custom control (although written in .NET 2.0), which shows
off a rich autocomplete feature (ala google suggest). It gets "auto
completion" data from the server using callbacks (read: xmlhttp).

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Enable autocomplete although site set autocomplete to off Frank Dohrmann Firefox 1 03-31-2006 11:28 PM
Turning on autocomplete for textbox webcontrol Luigi ASP .Net Web Controls 1 02-10-2005 12:42 PM
Trapping an Exception ocurring in a Webcontrol at the Page or parent WebControl level. ASP .Net 2 01-31-2005 06:34 PM
WebControl inside of WebControl and attaching events Kasabaarde Sumta ASP .Net Building Controls 0 12-13-2004 09:51 PM
Can a webcontrol (webcontrol.dll) have a configuration file? Luis Ramírez. ASP .Net Building Controls 2 07-06-2004 04:35 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57