why cant i place the clientside ajax request in the form tags ?
why does the The Controls collection cannot be modified because the control contains code blocks (i.e. <% ... %>). error occur?
i know if you replace the <%= with <%# the code runs but does not return the control id;
now if i put this outside of the form block an call the gotoPage() method in the bofy tag <body onload="gotoPage('ActivateJavasciptLayer')"> ; it says that object or method not supported (refering to AjaxRequest), but if the page completely load then if i call this method it works ? this problem occured after upgraded to the latest Q3 2007 version.
If you could mabe provide a workaround i would greatly appriciate it
thank you
| <telerik:RadAjaxLoadingPanel ID="ajaxLoader" runat="server" Height="75px" Width="75px" |
| Transparency="5"> |
| <img alt="Loading..." src="RadControls/Ajax/Skins/Default/loading7.gif" |
| style="border: 0px;" /> |
| </telerik:RadAjaxLoadingPanel> |
| <script language="javascript" type="text/javascript"> |
| function gotoPage(CallDesc) |
| { |
| var ajax = <%= ajaxMan.ClientID %>; |
| ajax.AjaxRequest(CallDesc); |
| } |
| </script> |
| </form> |
i know if you replace the <%= with <%# the code runs but does not return the control id;
now if i put this outside of the form block an call the gotoPage() method in the bofy tag <body onload="gotoPage('ActivateJavasciptLayer')"> ; it says that object or method not supported (refering to AjaxRequest), but if the page completely load then if i call this method it works ? this problem occured after upgraded to the latest Q3 2007 version.
If you could mabe provide a workaround i would greatly appriciate it
thank you