Reputation: 73
We have an application which currently runs on Asp.Net 1.1 When we upgraded it to Asp.Net 3.5 we got complaints that the web site was not performing. When we looked at the CPU history of the webservers then we see when the site was running on Asp.Net 1.1 the load was max 20%, and with 3.5 the load was around the 40 - 60%
The only thing we did change was the Asp.Net upgrade, and the settings in IIS 6 and the web.config change. In the code we did not change anything.
So what is performing better in 1.1 and not in 3.5? (the server is an 2003 webserver)
Upvotes: 0
Views: 279
Reputation: 73
I found out what the problem was (just in case someone would like to know). We where using an old dll for ADODB. And the RecordSetClass.Update() was causing the problems. In Asp.net 1.1 its not a problem, but in 2.0 and later on its consuming a lots of cpu.
Upvotes: 1