Re: Error after upgrade from 1.0 to 2.0

  •  12-05-2008, 11:22 AM

    Re: Error after upgrade from 1.0 to 2.0

    Moe,
     
    We support multiple uploads in the v2.0 , and changed server code to support this future.
     
    That changes cause your issue.
     
    Now I think the best solution for your code is that :
     
    this._isbinded=false; //decalre this member at the class code.
    this.Page.PreRenderComplete+=delegate{
       if(this._isbinded)return;
       this.FindParent<FieldEditor>().RefreshParent();
       this.FindParent<FieldEditor>().BindFields();
       this._isbinded=true;
    };
     
    Regards,
    Terry
View Complete Thread