我来一个笨办法
打开end.asp页面的时候传递过来 ?str=1  ?str=2  ?str=3
然后在end.asp的页面中读取 1 2 3
用if判断作条转

解决方案 »

  1.   

    同意 tongtianming(金银妖瞳)
      

  2.   

    打开end.asp页面的时候传递过来 
    end.asp?ym=1
    end.asp?ym=2 
    end.asp?ym=3
    然后在end.asp的页面用 request("ym")读取
    用if判断
    再返回!
      

  3.   

    string aa = Request.RawUrl;
    if (aa.IndexOf("form1.asp")!=-1)
    Response.redirect("form1.asp");
    else
    ......
      

  4.   

    上一页的地址:
    server_v1=Cstr(Request.ServerVariables("HTTP_REFERER")
      

  5.   

    可以打开end.asp页面的时候传递过来 ?str=1  ?str=2  ?str=3
    也可以用sesson 存储请求的页面
    也可以用cookie 存储请求的页面
      

  6.   

    tongtianming(金银妖瞳) 的方法可以的
      

  7.   

    我的方法是利用SESSION,感觉不错。用 Session["XXXX"]=this.Request.Url.ToString();记录下上页地址,然后重定向时重定向到:Session["XXXX"]。