This is a very weird error ocurring only with Firefox 3.5. I have tested it for IE, Safari and Chrome revealing no errors.
I'm using my localhost IIS 5.1 and ye old asp.
I've been able to reduce the scope to this... I have a textarea in a form, filled with 4000 characters, for example.
< textarea name="obs" id="obs" cols="75" rows="10">...< /textarea >
I submit it to page.asp.
In this example page I just make:
response.Write Request.Form( "obs" )
response.End
80% of times, firefox fails to end loading (waiting for localhost...) and I see that the string "Server:Microsoft-IIS/5.1Date:Tue,01Sep200915:55:01GMTContent-Type:text/html;charset=iso-8859-1" has been inserted in a random place inside text. In addition, the end of the text is cropped (I suppose that's what firefox is waiting for...).
When firefox loads normally the server string is not included.
Of course I cannot write this data to the database... ;-D
Thanx for reading and I will appreciate any idea about it.
EDIT: I have restarted my PC and disabled all firefox plugins and extensions and the error keeps "working" :-(