The issue that Selenium Server is complaining about is that the page that was requested included a Content-Length header of 798242 bytes but Selenium only received 8192 bytes of data. I've found that this usually happens when one of your web pages manually writes to the Response stream instead of using the ASP.NET lifecycle.
Look for code like this:
Response.ClearContent();
string data = GetSomeData();
Response.Write(data);
Response.Flush();
Response.Close();
You need to add a Content-Length header like this:
Response.AddHeader("Content-Length", data.Length.ToString());
So your code should look something like this:
Response.ClearContent();
string data = GetSomeData();
Response.AddHeader("Content-Length", data.Length.ToString());
Response.Write(data);
Response.Flush();
Response.Close();