We have an application running on .NET Framework 3.5. We have used the EO Web Menu version 6.0 in our application. Menu Loading doesn’t have any problem, only we get a problem while we navigate to page.
We get following javascript error every time we navigate to menu.
Permission Denied
http://192.168.2.145/eo_web.ashx?id=127f53a8-628c-43ac-ad72a932cbfb0a25To navigate to page I have written following code on menu item click
scriptString = "<script>window.top.frames['Content'].location = '" + NavigationURL + "'</script>"
If (Not ClientScript.IsClientScriptBlockRegistered("clientScript")) Then
ClientScript.RegisterClientScriptBlock(GetType(MenuStructure), "clientScript", scriptString)
End IfIn previous version of EO Web menu (i.e. version 3.0) we have added one code on page load
EO.Web.Runtime.AddLicense(license). We have not got this error when we were using version 3.0
Does this license would get change as we are using the latest license version on EO menu? Where do I get this license key?
Any help would be really appreciated!