Re: jQuery error with visual studio 2013

  •  03-11-2014, 1:29 PM

    Re: jQuery error with visual studio 2013

    Code runs on the page http://cyclenovascotia.com/WebForm1.aspx  but not in the Visual Studio debugger. See below

     

    I am working with VB.net and here is the code I am running, per your request. There is no code in the code behind and it is not referenced:

     

     <%@ Page Language="vb" %>  

      

    <%@ Register TagPrefix="CE" Namespace="CuteEditor" Assembly="CuteEditor" %>

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  

    <html xmlns="http://www.w3.org/1999/xhtml">  

    <head id="Head1" runat="server">  

        <title>example</title>  

    </head>  

    <body>  

        <form id="form1" runat="server">  

            <CE:Editor ID="editor1" runat="server">  

            </CE:Editor>  

        </form>  

    </body>  

    </html> 

     

     ---------------------------------------------------------

     

    When I run this page in the vb debugger, I no longer get the error when page is loading. I do get an error with entering text in the editor and pressing the 'ENTER' key. Here is the error: 

     

    Unhandled exception at line 3, column 123672 in eval code


    0x800a138f - JavaScript runtime error: Unable to get property 'nodeName' of undefined or null reference
     
    This page is actually running on the website even though it won't run in the VB debugger. See http://cyclenovascotia.com/WebForm1.aspx
View Complete Thread