You can look at Request.ServerVariables("HTTP_REFERER") or Request.ServerVariables("URL") .
Or you can use the query object as follows:
Request.Url.ToString() provides the full path to the calling page.
If you call this in the Immediate window without ToString, , you can see a lot of information:
Request.UrlReferrer.ToString()
DOK
source share