[jQuery] Re: .net generated JSON failing in mozilla, works in ie7

2008-10-16 Thread MorningZ
Just a suggestion: Use a generic handler (ashx) instead of an aspx page that way your server side code doesn't have to run though all the not-needed page lifecycle crap On Oct 16, 2:35 am, noob <[EMAIL PROTECTED]> wrote: > In case anyone uses a standard .aspx page for this and has the sam

[jQuery] Re: .net generated JSON failing in mozilla, works in ie7

2008-10-15 Thread noob
In case anyone uses a standard .aspx page for this and has the same issue, I changed the content type in either of these ways for the page providing the text and it worked: Response.ContentType = "text/plain"; Response.ContentType = "application/x-javascript"; // what flickr uses On Oct 15, 7: