获取从哪里跳转过来的URL
比如有一个页面
如果是从A点击连接跳转过来的 那么就显示A
如果是从B点击连接跳转过来的 那么就显示B
......
可以做到么
------解决方案--------------------
判断下 Request.Referer
------解决方案--------------------
C# code
string lastUrl = Request.UrlReferrer == null ? "" : Request.UrlReferrer.ToString();