Hi, no browsers (apart from Safari) can seem to get responseText from an ASP page on the ASP.NET Development Server app that comes with Web Developer.

Here's my client side JavaScript code used to get a response:

Code:
var req = new XMLHttpRequest();
				req.onreadystatechange = function()
				{
					alert(req.responseText);
				}
				req.open("GET", "http://localhost:50819/Test/login.aspx?username=testuser&password=password", true);
				req.send(null);
(I am fully aware that this will not work in IE because I haven't implemented the ActiveX method for this).

I am using this C# code to send a response:

Code:
Response.ContentType = "text/plain";
Response.ContentEncoding = Encoding.UTF8;
Response.Write("L94_CORRECTLOGININFO");

No HTML is in the response, just the "L94_CORRECTLOGININFO" message.

Any ideas on this would be great because I don't have a clue what's going wrong!

Louix