Before I ask the question, please see the google science fair website for reference: https://www.googlesciencefair.com/en/2013/
In that site, when I click a button, it posts to a different page. I say this because:
- there is a new URL
- the refresh / stop browser button flicks
However, the visual effect looks like an ajax call only. I say this because:
- only the relevant section gets updated
- the header, sidebar, or maybe even the footer does not seem to get reloaded
- the new content just “slides” in
Is there any way to achieve the same effect using ASP.NET MVC 3?
Thanks!
EDIT
I know how to make ajax calls and get the result. However, when I do this the URL does not change. I want to know to make an ajax call and at the same time change the URL, like the google science fair site does.
Thanks everyone for the answers. The ultimate answer is that they are using Angular JS to achieve the desired effects.