I'm a .net programmer, but new to mvc.
I created a new mvc page with a simple form on it - 2 textboxes and a submit button. Upon posting, it goes to my server side method, where the user info is entered into the db, and then I want to return the user to the same exact form but empty again.
When I use "return View("Index", new myIndexObject());" it returns the user to the same page with the form, but with the information he already filled out as if there was ViewState on the controls. How do i get rid of this ??