tags:

views:

28

answers:

2

Hello, I want to get link popularity of supplied link that will show inbound and outbound links means how many links are exchanged with the supplied link and with how many links that link is exchanged, i want to get this in Asp.Net. Can anyone guide me how can i get this? or supply some ready made script for this, thanks in advance.

A: 

It sounds a like you may be trying to reinvent the wheel. Have you looked at Google Analytics?

Burt
A: 

You can use the Request.UrlReferrer property.

If Not Page.IsPostBack Then
    ' Save the referrer Url
    ' Use now the Request.UrlReferrer variable to do what you want to do
End If

I also found a very interesting blog post on dunno.org "Logging HTTP Referals with ASP.NET" written in c#.

dampee