I have a web page with a form in the footer, when the user clicks submit in this form I submit their data and then return the view with the model with the line
Return View("TalkToUs", New TalkToUsModel(customer))
but this means that the user is at the top of the page and cannot immediately see the validation errors or success message on that page as this information is posted in the footer section so is there a way to return a view with the model and a html fragment so the url is
http://website/page#footer so that they can see this straight away without having to scroll down.
Also I have to assume the user has javascript turned off and the user could be using browsers ie6 and greater.
Thanks in advance for any help.
View Complete Post