tags:

views:

62

answers:

1

Has anyone else found a noticeable delay when requesting a view that is under another controller?

For example, all actions under the same controller seem to respond quickly, but when I follow a link that leads to another controller there is a lag - almost like it's compiling on the fly?

+1  A: 

Well, ASP.NET uses JIT compiling. However, if this lag is consistently happening over and over, it may be another issue since once it's compiled the first time, it shouldn't recompile right away.

mgroves