Mysterious JavaScript

  • Thread starter Thread starter Tim Cowan
  • Start date Start date
T

Tim Cowan

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=javascript>
alert('Specified 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
 
Tim said:
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=javascript>
alert('Specified 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

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

Hans Kesting
 
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
 
Back
Top