Mysterious JavaScript

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Tim Cowan

    Mysterious JavaScript

    Hi There,

    I am trying to track down a bizzare problem; It seems that the run time is
    inserting some JS at the top of the page.

    <script language=javasc ript>
    alert('Specifie d argument was out of the range of valid values.
    Parameter name: 13');
    </script>

    Does anybody know where this is coming from? I want to fix the error. Also
    the JS is not properly formed as it doesn't display, just the script error
    icon in the IE window.

    Thanks

    Tim


  • Hans Kesting

    #2
    Re: Mysterious JavaScript

    Tim Cowan wrote:[color=blue]
    > Hi There,
    >
    > I am trying to track down a bizzare problem; It seems that the run
    > time is inserting some JS at the top of the page.
    >
    > <script language=javasc ript>
    > alert('Specifie d argument was out of the range of valid values.
    > Parameter name: 13');
    > </script>
    >
    > Does anybody know where this is coming from? I want to fix the error.
    > Also the JS is not properly formed as it doesn't display, just the
    > script error icon in the IE window.
    >
    > Thanks
    >
    > Tim[/color]

    Try searching your solution for this string, and pay special attention
    to Global.asax, and especially the Application_Err or method.

    Hans Kesting


    Comment

    • Alvin Bruney [MVP - ASP.NET]

      #3
      Re: Mysterious JavaScript

      this is most likely coming from *your code

      --
      Regards,
      Alvin Bruney - ASP.NET MVP

      [Shameless Author Plug]
      The Microsoft Office Web Components Black Book with .NET
      Now available @ www.lulu.com/owc, Amazon.com etc
      "Hans Kesting" <news.2.hansdk@ spamgourmet.com > wrote in message
      news:eXHcEOBaFH A.2128@TK2MSFTN GP14.phx.gbl...[color=blue]
      > Tim Cowan wrote:[color=green]
      >> Hi There,
      >>
      >> I am trying to track down a bizzare problem; It seems that the run
      >> time is inserting some JS at the top of the page.
      >>
      >> <script language=javasc ript>
      >> alert('Specifie d argument was out of the range of valid values.
      >> Parameter name: 13');
      >> </script>
      >>
      >> Does anybody know where this is coming from? I want to fix the error.
      >> Also the JS is not properly formed as it doesn't display, just the
      >> script error icon in the IE window.
      >>
      >> Thanks
      >>
      >> Tim[/color]
      >
      > Try searching your solution for this string, and pay special attention
      > to Global.asax, and especially the Application_Err or method.
      >
      > Hans Kesting
      >
      >[/color]


      Comment

      Working...