Capture Search Engine Keyword
-
Good day everyone! This is one of the programming issue that I have ever faced and got totally confused about the right keywords to use. I want to capture the keywords that online users searching using any of the search engines used. Base on the keywords, I then make a search query on my webpage then display the appropriate result instead of irrelevant information. For instance, if some searched for Building a happy home and my site luckily appears on SERP, by luck, the user clicks on site link; I would like to get the question Building a happy home then on my webpage make a search as
Dim key_Word as String
'where key_World = the captured keywords from search engine
SELECT*FROM tablename WHERE columnName = key_Word
'Display resultI tried UrlReferrer.ToString and Request.Urlreferrer.Host as suggested in some sites but returns only www.google.com without the question Please how do I achieved this?
-
Good day everyone! This is one of the programming issue that I have ever faced and got totally confused about the right keywords to use. I want to capture the keywords that online users searching using any of the search engines used. Base on the keywords, I then make a search query on my webpage then display the appropriate result instead of irrelevant information. For instance, if some searched for Building a happy home and my site luckily appears on SERP, by luck, the user clicks on site link; I would like to get the question Building a happy home then on my webpage make a search as
Dim key_Word as String
'where key_World = the captured keywords from search engine
SELECT*FROM tablename WHERE columnName = key_Word
'Display resultI tried UrlReferrer.ToString and Request.Urlreferrer.Host as suggested in some sites but returns only www.google.com without the question Please how do I achieved this?
I think most search engines stop you doing this now, they want you to use their own tools to see that data.