Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

5
  • Better still use an HttpHandler as it's much lighter weight. Commented Jan 3, 2013 at 13:55
  • Or WebAPI if using .NET 4.5 :) Commented Jan 3, 2013 at 13:57
  • That was it. I still get a JS error in IE but it runs and plots. Makes sense. I'm assuming it was attempting parse out all the HTML as JSON and then it just failed. (Am I close?) Thank you very much! Commented Jan 3, 2013 at 14:01
  • Did you have any code in your .aspx file before you added Response.End()? If so that might be what IE didn't like Commented Jan 3, 2013 at 14:02
  • I had the test data for the serialization in there. The response was dumping the html out and I think jQuery was trying to parse it and failing. Commented Jan 3, 2013 at 14:33