When someone starts typing in the search-textbox, there must popup a ''dropbox'' below the textbox with the found items. Like Google.
I need this for an ASP.NET (aspx) site, can anyone suggest me something like this?
I really don't know where to begin with this.
Thanks.
jQuery Autocomplete: http://jqueryui.com/autocomplete/
You'll need to know how to set up/work with a web service, but after that it's pretty darned simple.
Related
I want to display list of Products in Asp.net like this as shown on Amazon website under Customers Who Viewed This Item Also Viewed Section:
http://www.amazon.in/gp/product/B00J8JTU4G/ref=s9_al_bw_g309_i1?pf_rd_m=A1VBAL9TL5WCBF&pf_rd_s=merchandised-search-6&pf_rd_r=1NQX58WY3F97WHGQ4NF1&pf_rd_t=101&pf_rd_p=561180507&pf_rd_i=1983631031
Is there any control for this in asp.net or any telerik control that would help me to do this and if not then any idea how to do this in asp.net???
I think Ajax call would do but then how would i do paging in that as i havent worked much in asp.net.i am a newbie in asp.net.
So if anybody have done same thing like this please do post your code here.
Any help would be much appreciated.
you can try with Datalist control .Because DataList have display direction property it might help to youDisplay direction
In an web application using MVC4, c# and Razor, there is a cool searchbox functionality that I need to implement.
It has 3 stages:
type 3 characters and search for result
select result from autocomplete list
present result as a funny removable object
Here are images:
I know I can implement steps 1 and 2 by using jquery autocomplete:
http://jqueryui.com/autocomplete/#remote
However, I have no idea on how to do step 3.
The web application is in my possession, but since the code is not commented nor is it properly refactored, I have no idea on how to replicate this functionality, nor do I know where to look for it in the code.
Can someone help me?
After checking on ChrFin's suggestion I made a search on my own and found select2:
http://plugins.jquery.com/select2/
The project is currently using this, so I am going to keep it and give it a whirl.
In the meantime, ChrFin's suggestion should also be mentioned:
http://demos.telerik.com/kendo-ui/multiselect/serverfiltering
Thanks for the help!
I would like to include into my project a lookup control. Example of this control here :
But I'm a simple student, and so I'm very poor :)
So do you know a free control like this for my mvc3 project ? Thanks in advance !
Google! Many sites embeds external search engines.
If you're looking to add a search engine to your web site, there are three things you need to thing about:
The index, which holds the search results. Lucene, Solr and Sphinx are examples of this.
The crawler, which gathers the results and puts them into the index
The ui to get the results back from the index.
The control you linked to seems to provide all three. For a free replacement, maybe have a look at something like http://www.searchblox.com/
One option is the jQuery UI "Autocomplete" plugin:
http://jqueryui.com/demos/autocomplete/
This doesn't integrate with MVC out of the box; you'd need to write a server side method to provide the content for the completion drop down.
Anybody has any idea on crawling websites that have dynamic pages/queries? I mean if I click a certain link, it has different values every I try to reload it in a web browser. Now my webcrawler could not download the contents of these pages. Please advise.
it would be the same way even it is dynamic or not. actually a crawler is only a mater of 3 things
The url
The data it sent to server if it is a POST Method then
The cookie if authentication is required
that's all,
the common problem when doing crawler:
Miss-guess of default page [index.html, index.php, default.aspx etc].. actually it will work without it for all method [POST/GET]
One of each field name is not written exactly
ASP.Net form viewstate id field (i forgot the name) but i can be achieve easily
Dynamic page generated by javascript. this one is the hardest part and the most cases even google still have problem about this.
hope that help.
You might want to look at this question which details how to write a crawler or look at the source code for http://searcharoo.net/ which contains a good crawler (see here).
If you have ever used SQL reporting services, there are some dropdown lists that pop down with a checkbox list in it. It allows a user to select multi items very nicely. Does anyone know a free User control or an example of this implemented. Ok, so I know I can do this with some elbow grease and html, was just trying to see if there was already something out there. I’m using ASP.NET C#.
Thanks,
Joe
Check this out.
http://www.metabuilders.com/Tools/CheckedListBox.aspx
http://forums.asp.net/t/1040242.aspx
Ok, posted here to soon. I use infragistics and found a possibe solution.
Thanks!
http://forums.infragistics.com/forums/t/3962.aspx