1

There is a way to load the contents of a page by navigating from one controller to another controller without loading the whole page and without changing the URL?
I need it for example to keep title, user information, etc, without having to load them each time.

Refael
  • 6,753
  • 9
  • 35
  • 54
  • 2
    SPA is your friend: http://www.asp.net/single-page-application – Mohammed Swillam Oct 30 '13 at 14:20
  • Mohammed is correct. Single page application is what you need. Previous version of asp.net allowed for ajax "partial loads", but Single Page Applications are truly better suited for it. Brush up on your javascript! For reference: http://www.asp.net/single-page-application – Joe Brunscheon Oct 30 '13 at 14:25
  • This would develop MVC3? It can to fit on the existing project? – Refael Oct 30 '13 at 14:30
  • @Refael I think this might help you http://stackoverflow.com/questions/16919981/single-page-application-with-mvc-4 – Guillermo Oramas R. Oct 30 '13 at 16:50

1 Answers1

0

youll need a single page application. you might want to use a framework for that.

Angular JS or DurandalJS and you have many more.

you can do it alone, but it can be complicated.

Avi Fatal
  • 1,550
  • 8
  • 8