请问怎么得知当前页面是由哪个链拉跳转过来的?
VS.net 2003 + SQLServer
1、我的网站跟别的网站做了友情链接,当有人登录我的网站时,怎么才能判断是由哪个网站
跳转过来的?
2、想在后台做一个可以设置域名的功能,请问有没有例子可以参考一下?
谢谢!
------解决方案--------------------request.ServerVariables( "HTTP_REFERER ")
------解决方案--------------------Request.UrlReferrer.PathAndQuery
------解决方案--------------------Request.UrlReferrer 返回的 Uri 对象的属性
AbsolutePath = /ericfine/blog.aspx
AbsoluteUri = http://blog.csdn.net/ericfine/blog.aspx?id=2
Authority = blog.csdn.net
Fragment =
Host = blog.csdn.net
HostNameType = Dns
IsDefaultPort = True
IsFile = False
IsLoopback = True
IsUnc = False
LocalPath = /ericfine/blog.aspx
PathAndQuery = /ericfine/blog.aspx?id=2
Port = 80
Query = ?id=2
Scheme = http
Segments = System.String[]
UserEscaped = False
UserInfo =
------解决方案--------------------学习
------解决方案--------------------Request.UrlReferrer