Url。。。。正在asp.net中重写。。!

Url。。。。正在asp.net中重写。。!,asp.net,Asp.net,我必须这样做:像在谷歌和许多其他网站 我目前的ULR 1是: 当我点击登录,然后URL改变如下。。。 URL 2 https://accounts.google.com/ServiceLogin?service=googleplay&passive=1209600&continue=https://play.google.com/store/apps/details?id%3Dcom.ruanshaomin.game%26feature%3Dsearch_result%26rdid%3Dcom

我必须这样做:像在谷歌和许多其他网站

我目前的ULR 1是:

当我点击登录,然后URL改变如下。。。 URL 2 https://accounts.google.com/ServiceLogin?service=googleplay&passive=1209600&continue=
https://play.google.com/store/apps/details?id%3Dcom.ruanshaomin.game%26feature%3Dsearch_result%26rdid%3Dcom.ruanshaomin.game%26rdot%3D1&followup=https://play.google.com/store/apps/details?id%3Dcom.ruanshaomin.game%26feature%3Dsearch_result%26rdid%3Dcom.ruanshaomin.game%26rdot%3D1

当我成功登录时 它直接重定向到上面的链接(ULR 1)。。。我该怎么做

javascript:

if(document.location.href.indexOf('continue')!=-1)
document.location = document.location.href.split('continue=')[1];
C#

if(!IsCallback && Request.QueryString["continue"] != null)
Response.Redirect(Request.QueryString["continue"].ToString());