From: Dion O. <dol...@us...> - 2006-01-11 20:27:46
|
Update of /cvsroot/magicajax/magicajax/Core/UI In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25664/magicajax/Core/UI Modified Files: RenderedByScriptControl.cs Log Message: Reverted changes... Index: RenderedByScriptControl.cs =================================================================== RCS file: /cvsroot/magicajax/magicajax/Core/UI/RenderedByScriptControl.cs,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** RenderedByScriptControl.cs 8 Jan 2006 21:14:02 -0000 1.18 --- RenderedByScriptControl.cs 11 Jan 2006 20:27:32 -0000 1.19 *************** *** 194,198 **** // We cannot avoid this because Firefox also keeps any changes that occured // to ViewState, so we need the controls to keep their changes. ! hiddenStore = string.Format("__{0}$RBS_Store", this.ClientID); } else --- 194,198 ---- // We cannot avoid this because Firefox also keeps any changes that occured // to ViewState, so we need the controls to keep their changes. ! hiddenStore = this.ClientID + "$RBS_Store"; } else *************** *** 201,205 **** // a different name for the hidden field at each page request so that // it can be reset for Firefox's "Refresh". ! hiddenStore = string.Format("__{0}$RBS_Store{1}", this.ClientID, DateTime.Now.Ticks); } --- 201,205 ---- // a different name for the hidden field at each page request so that // it can be reset for Firefox's "Refresh". ! hiddenStore = this.ClientID + "$RBS_Store" + DateTime.Now.Ticks; } |