From: Argiris K. <be...@us...> - 2006-02-09 23:19:25
|
Update of /cvsroot/magicajax/magicajax/Core/UI In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6101/Core/UI Modified Files: AjaxControl.cs AjaxPage.cs AjaxUserControl.cs Log Message: --SetAjaxIntrinsic method is called at OnInit as well Index: AjaxUserControl.cs =================================================================== RCS file: /cvsroot/magicajax/magicajax/Core/UI/AjaxUserControl.cs,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** AjaxUserControl.cs 22 Dec 2005 01:15:20 -0000 1.10 --- AjaxUserControl.cs 9 Feb 2006 23:19:16 -0000 1.11 *************** *** 99,102 **** --- 99,108 ---- } + protected override void OnInit(EventArgs e) + { + SetAjaxIntrinsics(); + base.OnInit (e); + } + protected override void OnLoad(EventArgs e) { Index: AjaxPage.cs =================================================================== RCS file: /cvsroot/magicajax/magicajax/Core/UI/AjaxPage.cs,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** AjaxPage.cs 22 Dec 2005 01:15:20 -0000 1.9 --- AjaxPage.cs 9 Feb 2006 23:19:16 -0000 1.10 *************** *** 99,102 **** --- 99,108 ---- } + protected override void OnInit(EventArgs e) + { + SetAjaxIntrinsics(); + base.OnInit (e); + } + protected override void OnLoad(EventArgs e) { Index: AjaxControl.cs =================================================================== RCS file: /cvsroot/magicajax/magicajax/Core/UI/AjaxControl.cs,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** AjaxControl.cs 3 Jan 2006 01:49:09 -0000 1.12 --- AjaxControl.cs 9 Feb 2006 23:19:16 -0000 1.13 *************** *** 111,114 **** --- 111,120 ---- } + protected override void OnInit(EventArgs e) + { + SetAjaxIntrinsics(); + base.OnInit (e); + } + protected override void OnLoad(EventArgs e) { |