Click to See Complete Forum and Search --> : JScript Exceptions won't go away!!


Turbo_King
November 5th, 2004, 11:24 AM
Does anyone know why I can't seem to turn of JScript exceptions while debuggind in Visual Studio with c# and asp.net.

I have been through all the debugging options I can find and set them to continue or ignore JScript exceptions but to no avail.

When I click on this third party infagistics control it raises a JScript exception and breaks into the IDE, it then won't let me continue I have to break, but I don't want to debug the JScript.

Thanks

Gareth.

womalley
November 8th, 2004, 08:33 AM
try putting your code in a try catch statement...

try
{
.
.
.. some code that will break
.
.
}
catch (e)
{
.
.
. . do nothing
.
.
}

Will