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

Weird JavaScript Error

1 Answer 71 Views
Ajax
This is a migrated thread and some comments may be shown as answers.
Hubert
Top achievements
Rank 1
Hubert asked on 12 Mar 2013, 04:07 PM
Hi I´am getting this ErrorMessage

Unhandled exception at line 15, column 16485 in http://localhost:58311/Telerik.Web.UI.WebResource.axd?_TSM_HiddenField_=RadScriptManager1_TSM&compress=1&_TSM_CombinedScripts_=;;System.Web.Extensions,+Version=4.0.0.0,+Culture=neutral,+PublicKeyToken=31bf3856ad364e35:de-DE:c9cbdec3-c810-4e87-846c-fb25a7c08002:ea597d4b:b25378d2;Telerik.Web.UI:de-DE:d8ebf3de-0179-4fa4-89e6-a030e0cf94a1:16e4e7cd:f7645509:22a6274a:ed16cbdc:58366029:24ee1bba:f46195d3:2003d0b8:1e771326:aa288e2d

0x800a139e - RuntimeError in JavaScript: Sys.WebForms.PageRequestManagerServerErrorException: Unkown Error StatusCode 0

I´ve read about that this may come a Firewall or Proxy...but I get this Error developing on my LocalMachine!

Here is my aspx-Code

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Default" %>
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<head runat="server">
    <title></title>
    <telerik:RadStyleSheetManager id="RadStyleSheetManager1" runat="server" />
    <link href="Styles/ServiceRequestStyle.css" rel="Stylesheet" type="text/css" />
    <link href="Styles/Default.css" rel="Stylesheet" type="text/css" />
</head>
<body>
    <form id="form1" runat="server">
        <telerik:RadScriptManager ID="RadScriptManager1" runat="server">
            <Scripts>
                <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.Core.js" />
                <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQuery.js" />
                <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQueryInclude.js" />
            </Scripts>
        </telerik:RadScriptManager>
     
        <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
            <AjaxSettings>
                <telerik:AjaxSetting AjaxControlID="ArticleGrid">
                    <UpdatedControls>
                        <telerik:AjaxUpdatedControl ControlID="ArticleGrid" />
                    </UpdatedControls>
                </telerik:AjaxSetting>
 
                <telerik:AjaxSetting AjaxControlID="ArticleGrid">
                    <UpdatedControls>
                        <telerik:AjaxUpdatedControl ControlID="ArticleImage" />
                    </UpdatedControls>
                </telerik:AjaxSetting>
            </AjaxSettings>
        </telerik:RadAjaxManager>
        <div id="rootContainer" >
 
            <div id="selectionContainer">
                <asp:TextBox ID="ArticleFilterTb" runat="server" AutoPostBack="true" OnTextChanged="ArticleFilterTb_TextChanged"/>
 
                <telerik:RadGrid ID="ArticleGrid" runat="server" AutoGenerateColumns="false"
                                 AllowPaging="True" Height="350px" Width="500px"
                                 OnSelectedIndexChanged="ArticleGrid_SelectedIndexChanged">
                    <PagerStyle Mode="NextPrevAndNumeric" EnableSEOPaging="True"/>
                    <MasterTableView>
                        <Columns>
                            <telerik:GridImageColumn DataType="System.String"
                                                     UniqueName="Picture"
                                                     DataImageUrlFields="PicturePath"
                                                     ImageHeight="50px"
                                                     HeaderStyle-Width="65px" />
                            <telerik:GridBoundColumn DataField="DisplayName" />
                            <telerik:GridBoundColumn DataField="PrimaryKey" />
                        </Columns>
                    </MasterTableView>
                    <ClientSettings EnablePostBackOnRowClick="true">
                        <Selecting AllowRowSelect="true" />
                        <Scrolling AllowScroll="True" UseStaticHeaders="True" SaveScrollPosition="true" />
                    </ClientSettings>
                </telerik:RadGrid>
            </div>
 
            <div id="detailsContainer">
                <asp:Image ID="ArticleImage" runat="server" Height="150px" ImageUrl="D:\Bibliotheken\Bilder\Logo_Spiral_Tribe.png" />
            </div>
        </div>
    </form>
</body>
</html>

1 Answer, 1 is accepted

Sort by
0
Maria Ilieva
Telerik team
answered on 15 Mar 2013, 12:30 PM
Hello Hubert,

There could be various reasons for this behavior.

You can see explanations of the different HTTP Status Codes at this address.

You can take a look also at that post which explains one of the most common reasons for this error message.

Few more options are also explained in this forum thread.

I hope you find a solution to your problem in one of these.

Regards,
Maria Ilieva
the Telerik team
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 their blog feed now.
Tags
Ajax
Asked by
Hubert
Top achievements
Rank 1
Answers by
Maria Ilieva
Telerik team
Share this question
or