We are using ASP.NET MVC 4 and KO (KnockOutJS) for frontend side.
For making components in KO, we are using ASP.NET MVC partial views (consist of script and template).
Some of our components depend on another component so we load some partials in another partial view to make sure dependent component exists in page.
The problem is that in such cases multiple instance of one partial load in page.
Is there any way to tell the view engine to load every partial only once in each page?
Any idea will appreciated ...
Thanks