I have a very strange behavior with Request.Form.
Here are two IIS 7 servers running the same ASP.NET application. On the first instance it's all ok. But the second one have very slow performance.
Profiler showed that this line:
context.Request.Form["id"]
takes more than 130 ms each time!
Profiler log:
0,60% get_Form - 4536 ms - 68 calls - System.Web.HttpRequest.get_Form()
Server configurations are just the same (?). The first server runs Vista, the second (slower) runs Windows Web Server 2008.
UPD: Both application instances are running in integrated mode, pool setting are the same.
Any ideas?