I need to disable autocomplete on the forms as we are getting some very odd values in there, including what looks like form field names. So until we understand this more we think it prudent to disable this feature.
Obviously we can switch it off for each form like so:
Html.BeginForm("Create","Report", FormMethod.Post, new { autocomplete="off"}))
However is there a more centralised approach to do this ie default "BeginForm" to be autocomplete=off. Otherwise we would need to changes a lot of forms individually.
Many thanks in advance.