本帖最后由 willpanLY 于 2010-08-25 17:51:50 编辑

解决方案 »

  1.   

    你的返回使用javascript就OK了:
    history.go(-1);
      

  2.   

    保存到cache缓存
    弹出编辑实现操作

    JQUERY
    function OpenWindow(id,width,height) {
         var url = "a.aspx?Id=" + id + "&pId=" + p;
         OpenJWindow('#openwin', url, width, height, EditClosed);
    }
    function SetTitle(url)
    {
      var obj = document.getElementById("winTitle");
        
          if(url.lastIndexOf("Id") >0){
            obj.innerHTML ="编辑";
            return;
            } 
             obj.innerHTML ="新增";
    }
    function EditClosed(result) {    if (result == "0") return;
        document.getElementById("<%=LinkButton1.ClientID %>").click();
        return false;
    }
      

  3.   

    history.go(-1)不行的,返回后网页过期
      

  4.   

    没有什么好的建议,看来还是用ajax弹出对话框去处理了。