This is a migrated thread and some comments may be shown as answers.

teleric javascript

7 Answers 103 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Carlos
Top achievements
Rank 1
Carlos asked on 03 Dec 2013, 02:31 PM
hi all, a strange error its apearing when i try the page in ie.
JavaScript critical error at line 5, column 1 in http://localhost:62127/Main.aspx?ReturnUrl=/Telerik.Web.UI.WebResource.axd?_TSM_HiddenField_=ScriptManager1_TSM&compress=1&_TSM_CombinedScripts_=%3b%3bSystem.Web.Extensions%2c+Version%3d4.0.0.0%2c+Culture%3dneutral%2c+PublicKeyToken%3d31bf3856ad364e35%3aen-US%3ac9cbdec3-c810-4e87-846c-fb25a7c08002%3aea597d4b%3ab25378d2%3bTelerik.Web.UI%3aen-US%3adf833b2e-28ee-45e7-8320-6f2a9cb883d7%3a16e4e7cd%3af7645509%3a22a6274a&_TSM_HiddenField_=ScriptManager1_TSM&compress=1&_TSM_CombinedScripts_=;;System.Web.Extensions,+Version=4.0.0.0,+Culture=neutral,+PublicKeyToken=31bf3856ad364e35:en-US:c9cbdec3-c810-4e87-846c-fb25a7c08002:ea597d4b:b25378d2;Telerik.Web.UI:en-US:df833b2e-28ee-45e7-8320-6f2a9cb883d7:16e4e7cd:f7645509:22a6274a

what can it be.

best regards

7 Answers, 1 is accepted

Sort by
0
Angel Petrov
Telerik team
answered on 06 Dec 2013, 06:59 AM
Hello Carlos,

Based on the information it would be hard to tell why is this error occurring. Could you please share with us the problematic page contents? Additionally please list the steps which one must perform in order to replicate the problem.

Regards,
Angel Petrov
Telerik
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to the blog feed now.
0
Carlos
Top achievements
Rank 1
answered on 03 Jan 2014, 11:49 AM
so the problem its the radmenu, in internet explorer 9, it doens do nothing and stays put, an gives this exeptiosn in console:

HTML1113: Document mode restart from Quirks to IE9 Standards
Main.aspx
SCRIPT16385: Not implemented
 
Telerik.Web.UI.WebResource.axd?_TSM_HiddenField_=ScriptManager1_TSM&compress=1&_TSM_CombinedScripts_=%3b%3bSystem.Web.Extensions%2c+Version%3d4.0.0.0%2c+Culture%3dneutral%2c+PublicKeyToken%3d31bf3856ad364e35%3aen-US%3ac9cbdec3-c810-4e87-846c-fb25a7c08002%3aea597d4b%3ab25378d2%3bTelerik.Web.UI%3aen-US%3a8d3dfe81-f887-4a80-ad14-8e882b52e5e6%3a16e4e7cd%3af7645509%3a22a6274a%3a24ee1bba%3ae330518b%3a2003d0b8%3a1e771326%3a88144a7a%3ac8618e41, line 111 character 15
SCRIPT16385: Not implemented
 
Telerik.Web.UI.WebResource.axd?_TSM_HiddenField_=ScriptManager1_TSM&compress=1&_TSM_CombinedScripts_=%3b%3bSystem.Web.Extensions%2c+Version%3d4.0.0.0%2c+Culture%3dneutral%2c+PublicKeyToken%3d31bf3856ad364e35%3aen-US%3ac9cbdec3-c810-4e87-846c-fb25a7c08002%3aea597d4b%3ab25378d2%3bTelerik.Web.UI%3aen-US%3a8d3dfe81-f887-4a80-ad14-8e882b52e5e6%3a16e4e7cd%3af7645509%3a22a6274a%3a24ee1bba%3ae330518b%3a2003d0b8%3a1e771326%3a88144a7a%3ac8618e41, line 111 character 15
SCRIPT5009: 'Telerik' is undefined
Main.aspx, line 181 character 5
0
Kate
Telerik team
answered on 03 Jan 2014, 12:52 PM
Hello Carlos,

Please try using the approach described in the following forum post where you can find more detailed information on the specific exception and how you can resolve it - Not Implemented JavaScript error under IE9 with Q3 2013 SP1.

Regards,
Kate
Telerik
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to the blog feed now.
0
miksh
Top achievements
Rank 1
Iron
answered on 17 Mar 2014, 08:01 PM
I have the same issue.
From what I found out that occurs on the login page when the unauthenticated user has access to the page but in the global web.config most likely the unauthenticated users are denied. 
<authorization>
<deny users="?" />
</authorization> 

So it causes in access deny to download Telerik.Web.UI.WebResource.axd so you usually see url like http://myUrl/mypage.aspx?ReturnUrl=/Telerik.Web.UI.WebResource.axd?...

The question to Telerik - how to prevent it for the login page?
0
Genady Sergeev
Telerik team
answered on 21 Mar 2014, 02:44 PM
Hi,

You can use the bellow web.config configuration to exclude Telerik.Web.UI.WebResource.axd from authentication:

<location path="Telerik.Web.UI.WebResource.axd">  
    <system.web>      
        <authorization>
            <allow users="*" />      
        </authorization>  
    </system.web>
</location>


Thus way the handler won't require authentication and can be request from the login page.

Regards,
Genady Sergeev
Telerik
 

Build cross-platform mobile apps using Visual Studio and .NET. Register for the online webinar on 03/27/2014, 11:00AM US ET.. Seats are limited.

 
0
miksh
Top achievements
Rank 1
Iron
answered on 21 Mar 2014, 02:48 PM
Yes it works.
You may notice that this issue comes up from time to time so I suggest at least to add this settings into Telerik VS project template to avoid such an issue when a user creates the telerik web site from the scratch.
0
Angel Petrov
Telerik team
answered on 26 Mar 2014, 09:37 AM
Hello Michael,

I will forward your request to my superiors so they can discuss whether to change the template or not. If the functionality will not be affected in any way probably this will be included in a future release.

Regards,
Angel Petrov
Telerik
 

Build cross-platform mobile apps using Visual Studio and .NET. Register for the online webinar on 03/27/2014, 11:00AM US ET.. Seats are limited.

 
Tags
General Discussions
Asked by
Carlos
Top achievements
Rank 1
Answers by
Angel Petrov
Telerik team
Carlos
Top achievements
Rank 1
Kate
Telerik team
miksh
Top achievements
Rank 1
Iron
Genady Sergeev
Telerik team
Share this question
or