Simply, this exception occurs when you have a server side call from javascript located at the head tag of the html like that
< head runat="server" >
< script >
var controlClientObject = <%= RadControl1.ClientID %>
...
< / script>
< body >
...
you should do that
I googled a lot and this is what concluded.
ref. http://www.telerik.com/help/aspnet/menu//menu_move_codeblocks.html< script >
var controlClientObject = <%= RadControl1.ClientID %>
...
< / script>
< body >
...
you should do that
< head runat="server" >
< body >
< script >
var controlClientObject = <%= RadControl1.ClientID %>
...
< / script >
...
< body >
< script >
var controlClientObject = <%= RadControl1.ClientID %>
...
< / script >
...
I googled a lot and this is what concluded.