From: Dion O. <dol...@us...> - 2006-01-20 01:36:07
|
Update of /cvsroot/magicajax/magicajax/Core/UI In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21237/magicajax/Core/UI Modified Files: RenderedByScriptControl.cs Log Message: First support for scripts and hidden fields that were added during callback. Still beta! Index: RenderedByScriptControl.cs =================================================================== RCS file: /cvsroot/magicajax/magicajax/Core/UI/RenderedByScriptControl.cs,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** RenderedByScriptControl.cs 11 Jan 2006 20:27:32 -0000 1.19 --- RenderedByScriptControl.cs 20 Jan 2006 01:35:56 -0000 1.20 *************** *** 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 --- 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 = this.ClientID + "$RBS_Store" + 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; } |