Adam Bickels
Adam Bickels

Reputation: 471

IIS7 Asp.net - the compilation is very slow

I'm working with iis7 asp.net project. when updating: .bin, .config, and app code the iis compile the site. the comppilaton process took very long time.

what could be the reason ?

Upvotes: 0

Views: 732

Answers (1)

Ramesh Roddam
Ramesh Roddam

Reputation: 283

Yes, starting an ASP.NET application in IIS is relatively slow.

The solution is "Application Initialization". This is built-in in IIS 8 and available out-of-band as a module for IIS 7.5,7.0,8.0: . Check this link for information: http://www.iis.net/learn/get-started/whats-new-in-iis-8/iis-80-application-initialization

Upvotes: 2

Related Questions