Due to crazyness in this project (Too long a story to get in right now), we need to keep the data in the Model of the form, but not display it on the form on successfull postback, where the form postback was succesfull -
<%= Html.TextBox("FullName", "", new { @class = "required", title = "Full Name is required" })%>
Dosent seem to do the trick - and I cant reset the model in the controller, because on post back we want a message (that appears on the same page) that pretty much says something like "Thankyou for your query regarding XYZ (which is what they entered in one of the text boxes)"
I hope that makes sense.