StackOverflowNewbie
StackOverflowNewbie

Reputation: 40633

ASP - How to get URL of Referring Site

This is an ASP question, not ASP.Net.

Assume there are two sites:

  1. www.domain-1.com
  2. www.domain-2.com

www.domain-1.com has a redirection URL in IIS that points to www.domain-2.com. In www.domain-2.com, I need to know the URL of the referring site (e.g. in this case, it would be www.domain-1.com). How is this done?

Upvotes: 13

Views: 24030

Answers (1)

Alex
Alex

Reputation: 2420

referer = Request.ServerVariables ("HTTP_REFERER")

Upvotes: 26

Related Questions