Only just managed to get around to creating a test case:
http://www.texotela.co.uk/ajaxerror.phpHTML is sent as text/html, but no DOCTYPE .
John Resig wrote:
> Could you save the output as an HTML file? And then make another file
> that tries to load it? That might be able to point us in the right
> direction, at least.
>
> --John
>
>
>
> On Thu, Oct 2, 2008 at 3:18 PM, Sam Collett <
sam.collett@gmail.com> wrote:
> >
> > Not something I can replicate at the moment (no access to an ASP.NET
> > site currently), but it is the result of when an exception occurs and
> > isn't handled.
> >
> > Sample page (i.e. test.aspx), save and run on ASP.NET capable server
> > (that hasn't got friendly error messages enabled).
> >
> > <%@ Page Language="C#"%>
> > <script runat="server">
> > public void Page_Load(object sender, EventArgs e)
> > {
> > int canCauseException = int.Parse(null);
> > }
> > </script>
> >
> > - Sam
> >
> > On Oct 2, 5:46 pm, "John Resig" <
jere...@gmail.com> wrote:
> >> Do you have a sample page up? It's possible that the specific input may
> >> cause this effect.
> >>
> >> --John
> >>
> >> On Thu, Oct 2, 2008 at 12:29 PM, Sam Collett <
sam.coll...@gmail.com>