“SCRIPT28: Out of stack space” on website using IE9

后端 未结 4 1718
忘掉有多难
忘掉有多难 2021-01-17 07:56

I am having an issue where all link button controls on my page do not work once we deploy our website to our production server. Here are a few details:

  1. We h

4条回答
  •  别那么骄傲
    2021-01-17 08:18

    Check out the msdn page for info on this error. In my case, the error was caused by:

    Your code triggered an event cascade.
    An event cascade is caused by triggering an event that calls an event procedure that's already on the stack. ...

    Basically, I was trying to trigger a click event (using jQuery) on a file upload control using the control's click event. Seems like it would cause infinite recursion. Perhaps you may be having a similar problems with your buttons.

提交回复
热议问题