<br>I have developed a Silverlight application that uses IronPython to<br>
dynamically generate and execute a script. The script is dependent on<br>
data supplied by the user and can be computationally expensive so it&#39;s<br>
run on a separate thread. I need an option for the user to abort the<br>
script in case it hangs. I have tried Thread.Abort() but it seems<br>
Silverlight doesn&#39;t allow me to. Since the script is user supplied I<br>
cannot just raise a flag and request a polite abort. I&#39;m looking for<br>
some more brutal way.<br><br>Thanks for help!<br>