Hello, I have an ASP.NET MVC application, with a view that submits form values via POST. When my controller action method receives the POSTed data it only does server side things with it, no need for feedback to the client side.
However I am required to return an ActionResult. If I return null or EmptyResult, the page becomes blank after the form is submitted. I could return the View, but it is pretty 'expensive' to build, so I wonder if there is a way to simply have the values POSTed and then NOT have the browser expect anything in return?