I am using the autocomplete extender to search on clients names. The column in the database is a concatenation of first and last name. (firstname +' '+lastname). the search string is - SqlCommandcmd =newSqlCommand("select riderid, dname from rider where dname like @name+'%'", con); in webservice. As I type it works finr. Dav gets all Daves and davids - add an E and the Davds drop off, but when you type a space the result list goes blank. I owuld thinkitwould waitfpr the last name? Do I need a special character in there to replace the space? Anyone know how this is done?