开发者

How to get Keywords used from a Search Engine

开发者 https://www.devze.com 2022-12-09 01:12 出处:网络
I am using C# asp.NET and I have searched the internet up and down trying to find a solution to this problem. In google analytics they have the keywords used by search engine开发者_开发技巧s so there

I am using C# asp.NET and I have searched the internet up and down trying to find a solution to this problem. In google analytics they have the keywords used by search engine开发者_开发技巧s so there must be a way to do it. thanks


Do you mean determining the search keywords that led a user to your site? This is done by analyzing the referrer URL.

string referrer = Request.UrlReferrer.ToString();

Most of them are pretty simple, but there are different patterns for different search engines.


I found out that besides implementing your own algorithm to extract keywords I can use google analytics to do this. Google has an api for their analytics software and this is what i have been using. The only thing that is difficult is if you have more then 10,000 pages you have to open an adwords account.

0

精彩评论

暂无评论...
验证码 换一张
取 消