|
I have two controls on a page, one is a search entry and submission control the other is the search results control, they have to be separated due to the layout of the site. Im looking at different ways of having the search control submit displaying the...
Started by Matt on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Query strings are fairly simple an event when....
Your search results can be crawled easily as they are just pages on your site.
results page from anywhere in your site or an external site simply by passing a query string.
|
|
I'm developing a web site that has a search box as part of the standard page template (similar to what you see on the top right of the SO site). I want to dynamically preview possible matches to the user input, similar to what you see when you start typing...
Started by Jeremy Raymond on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
$("#searchbox").keyup(function(){ $.post(....
You could use jQuery to do this, and as the keyup event (or related event) is fired, you can fire off a request to the server, or to a local collection of words, and show all that match in a div below the box .
|
|
How many characters can a page <title> be before it will appear truncated in Google search results?
What about other search engines?
Started by Horace Loeb on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If you put too many characters in your tile, as 65 characters that Google .
About a third down the page, the author suggests that the title points of the page.
I found the following site.
|
Ask your Facebook Friends
|
I am using Lucene to show search results in a web application.I am also custom paging for showing the same. Search results could vary from 5000 to 10000 or more. Can someone please tell me the best strategy for paging and caching the search results?
Thanks...
Answer Snippets (Read the full thread at stackoverflow):
Using the Hits object returned from search, you can access the documents for a page like '...' before the link for the....
Caching introduces statefulness caching.
Just repeat the search with a different offset for each page.
|
|
Possible Duplicate:
“Unsplit” article pages on the web
i once had an add on on firefox that let me go to the next page in forum or search results without clicking on the page number but by going to the bottom of the page. What is this called?
Started by John on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at superuser):
It doesn't work for forums but, since you also mentioned search results, CustomizeGoogle is an extension that can be configured to fetch more results in a Google search simply by scrolling to....
But it's no longer supported.
|
|
I inherited a Drupal 5 site recently and have a series of enhancements to make. Several of then revolve around search results.
Unpublished pages showing up in search engine results. Some of these are old pages, others are recently unpublished. All are...
Started by easement on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
It could be you are using....
Google would need db access to show unpublished nodes.
The problem with your search results might well be relatedSounds like it's drupal that is handling the search.
General question concerning node access.
|
|
Hello people. This is definately a novice question, but if you could be of any help i would be very grateful.
Basically, i'm building a database management page, and it of course includes a search function.
So, the search form looks something like this...
Started by Andreas Carlbom on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Database //get results } ?>
in your index.php page
<?php if($_POST['doSearch']) { //a search the results directly into the page content when the submit button is pressed, rather than causing a page request....
|
|
Hi,
I have MVC 1.0 app on VS2008.
I have webpage that has a search form fields and then when search button clicked uses Ajax.BeginForm to load results in a div. Works great!
But the results have a pager that just uses an anchor with href passing in page...
Started by Malcolm on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The trick here is to make sure each 'page' in the pager has a similar the '#' characters? that makes sure that when u click on the text, it doesn't try and goto another HTML page for the pager?
try that and....
results to a div.
|
|
I'm building out a search results page within a blog. I've rewritten the URL so that going to:
/blog/tag/foo
will return a search results for foo.
In the template, I'd like to return a listing of all the posts that are tagged with 'foo', so I've made ...
Started by Martin McClellan on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
In the Search Results template, instead....
This is how you should do it in most templates, however the Search Results system "tag search" results in the Search Results system template.
Tagged "foo".
|
|
I am especially interested in Google search results. Some web-sites use category IDs in their URLs while others use a more contemporary method of "friendly urls". I.e:
Old URLs: mywebsite.com/23151/32/
New URLs: mywebsite.com/my-category/my-page
If the...
Started by sneg on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Hi,
If you take a look at the Search Engine Optimization Starter Guide linked from this post better organized, but it could also lead to better....
See Google's guide to SEO , specifically the stuff starting around page 6 and 7.
Yes, it matters.
|