Click here to Skip to main content
15,922,315 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
www.flipkart.com homepage has a search text box and a dropdownlist control..........how to impliment this type of control in asp.net (Show Autocomplete Panel with Product,category and Brand wise search ). ?
help please anyone

must visit the link for better understanding...
Posted
Comments
ZurdoDev 20-Feb-15 8:00am    
It requires a bit of code, more than I care to go through here. Have you searched google? There are lots of examples.

use auto complete Extender with this type of query!..

Example

SQL
select category from tbl_category where " +
                "category like @SearchText + '%' union select cmpny_name from tbl_companydetails where cmpny_name like @SearchText + '%'


try like this with your table structure!...
 
Share this answer
 
There are several examples here on CodeProject

e.g. Building an ASP.NET custom web control: a textbox and validator in one[^] and Multi select Dropdown list in ASP.NET[^]
Use the search box at the top of the page to find more.
Quote:
must visit the link for better understanding...

This makes this post look like spam. Avoid using phrases like this. Much better is to post the code you have already tried and explain where you are stuck.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900