Reputation: 79
I have a ASP.NET web site hosed in IIS . And i have a link on that site. So, if i click that link i will navigate to the MVC site Home page which has been hosted in in the same IIS.
Issue: The issue is it is very slow. It took's more than 10 sec to open the home page of MVC 5 web site. Its a cshtml with razor and has Jquery Datatable to load the data. Please let me know what would be best way to reduce that latency
Upvotes: -1
Views: 381
Reputation: 79
HI we resolved the above said issue using the below steps. - Instead hosting the MVC 5 site seperately with alternate port we hosted the MVC 5 site with in the Parent site. So that being said both will have the same port number.
Note: This increased the initial page load time. However made us to comment out somelines in the web.config of parent site. So after deploying the entire parent and Child need to be tested and validated.
Upvotes: 0