I had a food takeaway website, where the users can search the restaurants by giving their area name.
I want my website's LONDON search page to be listed when user search in google 'TAKEAWAYS IN LONDON'.
I think google dont crawl websites with query string.
HOW CAN WE ACHIEVE THAT? Plz help Any help will be highly appreciated
...
Hi,
while building a small RSS Reader for myself I discovered, that the iPad Reader Pulse or the Google Reader let you search RSS feeds simply by entering a keyword. So, there is no need to know the RSS URL. How can I integrate something like that in my own Reader? Is there some kind of web service that provides such a search?
Thank yo...
I'm spending a lot of time manually expanding deeply-nested folders in tree views like the Project Explorer and the File Search result tree. Is there a keyboard shortcut or menu command to expand all folders?
...
I am writing an HTML code for my cell phone. Its essentially a Dictionary App where I input a word and I look up the meaning from say, Dictionary.com ;
I am using Javascript to get the string but can I embed the word into the URL, "http://dictionary.reference.com/browse/"
Is there any way of doing this ?
...
I am trying to use Google Custom Search (Business Edition) on my site. I am not using the iFrame but I am using the Custom Element. I selected a theme and everything looks fine in all the browsers except IE6. All the search results are taking the Promotion CSS.
Update - Posted Code
<div id="cse-search-form" style="width: 100%;">Loading...
I have a survey that's stored in a large object graph of variable depth, depending on how many sections and sub-sections the user chooses to create. I need to be able to search through all the properties for each object in the object graph and see if that property's .ToString() contains a certain keyword that's being searched for.
Can I...
Yes, there's google.com. But I wonder if programmers use anything else for searching on the web related to programming.
...
I have an incremental index on a shared hosting server. I would have used a console application to perform the indexing by the hosting provider does not allow console apps on the server.
I am thinking of using a web service to do the indexing (with some queuing mechanism). Is this a good idea? What are the pros/cons or alternatives?
...
Hi!
I am writing module which allows to quick add users only by providing First and Lastname (without emial address or user name). Those users are 'ghost' like, just for a temporary uses.
Before adding user module needs to check if user with the same first name and last name already exists in system to avoid creating multiple ghost user...
I have a directory of about 30,000 text files and I'd like to search inside each to find if they contain a specified text. How can I do this effectively in PHP?
...
I'm letting users search my database for data by city.
My query looks like:
$results = mysql_query("SELECT * FROM mydb WHERE City='".$city."' LIMIT 10");
I want a user to be able to search 'all cities', so I'd like to either remove the WHERE statement if $city=='all cities'; or use a wildcard for the WHERE statement that matches all ci...
I have a seach by name function, which should return the name of one person, if the search matches the first name or the last name. The problem is that if i search for strings like 'firstname lastname' it doesn't find the name that matches (guess it's because of the space between the words) . What should i do for the search to work?
Also...
I followed steps in this link but it didn't work well
http://www.toddbaginski.com/blog/archive/2009/11/12/how-to-register-an-external-content-type-with-the-sharepoint-search-service.aspx
any ideas plz
...
i can't find how to create it,
i can create it on google maps v2, use :
map.addControl(new google.maps.LocalSearch()
but now my company use v3 now ,
so how to create it .
thanks
...
Hi,
I have a problem searching my SQLite database, which contains data written with cyrillic characters. If the key word is also cyrillic, then everything is ok, but if not, then I can`t get the result in my Android application.
Does anyone have an idea how can I implement searching the cyrilic data no matter the charset of the keywor...
Hello,
I need to add a search feature to a website.
Not being adept at PERL or PHP, I was thinking of adding a remotely hosted search CGI (like freefind or fusionbot). Alternately, I might end up trying to convert the HTML site to a Wordpress site (as I think I may be able to add a search function relatively easily once that is achiev...
Hi, I want to develop a tabbed application on Android. At the same time, I want the search functionality to be present on some tabs. For this reason, I declared some activites in manifest file and added them to TabHost. But the problem is that when I make a search, it calls onCreate() method of the current activity which resided in tab c...
I have a table in SQL Server 2008 with uniqueidentifier field.
In my application (C#, WPF) I have a textbox which intended for search some data by GUID, user can enter guid by typing, ctrl+v, etc, so he/she can make an error.
What is the best and fastest approach to make a search by this field using linq2sql ignoring whitespaces, "-".....
I would like to implement a simple search. Let's say the user enters 'york', then I would like to find all records that has a matching substring like 'new york' or 'yorkshire'.
So far I have figured out I will have to use the find method, but I can't figure out how to match for substrings.
...
Hi there.
I have a search box where you can enter plain text. The keywords are separated by spaces.
I check each keyword if it fits the format for a date and store 'all keywords' in one array and 'date keywords' in another. All the 'date keywords' are also in the 'all keywords' array, as I can not tell if its 'only' a date or maybe also ...