第一步,在page_load事件中写入一下代码:
string strUrl = Request.UrlReferrer.AbsoluteUri;ViewState["Url"] = strUrl;
第二步,在返回事件中写入一下代码:
string strUrl = ViewState["Url"].ToString();Response.Redirect(strUrl);
转载于:https://www.cnblogs.com/lsz-blog/archive/2013/03/21/2973466.html