0

How do improve the performance of Asp.net MVC5 application. Especially my login page and layout page took more than one minute time to load while first time run.

Any one give me suggestion to improve the performance of MVC5 application.

Advance Thanks.

Susan
  • 421
  • 2
  • 6
  • 21
  • 1
    Before applying random fixes/patches that will be proposed in answers here you need to understand core of your problem. Make sure to trace/profile your code that runs on first request to see what takes all that time. – serhiyb Aug 17 '16 at 15:45

1 Answers1

0

There are couple of things you can try:

A. Use the Application Initialization plugin

B. Use Auto-Start with .NET 4

C. Disable the idle-timeout (under IIS Reset)

D. Precompile the site

Here is the link of original post: Fixing slow initial load for IIS

Community
  • 1
  • 1
Vivek Sharma
  • 1,912
  • 1
  • 13
  • 15