I access a page in my projcect using different web browser.
case 1 : if I access it using FF or IE8 first , then access it using IE6.
IE6 will prompt a javascript error :'length' is null or not a object.
case 2: if I access it using IE6 first , then access it using FF or IE8.
FF will prompt a error: e is null , the prompt from IE8 is same as case 1.
in case 1, I debug it using vs2008, the problem line is "b<e.length" in Telerik.Web.UI.Ajax.Ajax.js .
I use master page, below is my content page
is there any problem at AjaxSettings ?
case 1 : if I access it using FF or IE8 first , then access it using IE6.
IE6 will prompt a javascript error :'length' is null or not a object.
case 2: if I access it using IE6 first , then access it using FF or IE8.
FF will prompt a error: e is null , the prompt from IE8 is same as case 1.
in case 1, I debug it using vs2008, the problem line is "b<e.length" in Telerik.Web.UI.Ajax.Ajax.js .
I use master page, below is my content page
<asp:Content ...> |
<script ...> |
some script codes |
</script...> |
some web controls |
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" OnAjaxRequest="RadAjaxManager1_AjaxRequest"> |
<AjaxSettings> |
<telerik:AjaxSetting AjaxControlID="rtvGrids"> |
<UpdatedControls> |
<telerik:AjaxUpdatedControl ControlID="rtvGrids" /> |
<telerik:AjaxUpdatedControl ControlID="rgChildren" /> |
</UpdatedControls> |
</telerik:AjaxSetting> |
<telerik:AjaxSetting AjaxControlID="RadAjaxManager1"> |
<UpdatedControls> |
<telerik:AjaxUpdatedControl ControlID="rtvGrids" /> |
<telerik:AjaxUpdatedControl ControlID="rgChildren" /> |
</UpdatedControls> |
</telerik:AjaxSetting> |
<telerik:AjaxSetting AjaxControlID="rgChildren"> |
<UpdatedControls> |
<telerik:AjaxUpdatedControl ControlID="rgChildren" /> |
</UpdatedControls> |
</telerik:AjaxSetting> |
</AjaxSettings> |
</telerik:RadAjaxManager> |
</asp:Content> |