A lightweight, extensible, open-source, and cross-platform version of the Entity Framework data access technology.
Browser http processing is a request / response. The browser sends a request, either a get via the address bar, link or form post method get, or it is a post via a standard form post. The server processes the request and returns a response. The browser unloads the current document and loads the new response. There is a target option that loads the response in a new tab instead of replacing the current document.
Even if the response exactly matches the current document, a complete reload is done and a new document is created.
as suggested the only way to do partial updates to the current document is to use JavaScript and Ajax. MVC actions support partial views so that html fragments can be returned instead of the complete page to Ajax calls.