By default whenever you create a strongly typed "Insert Type" view using mvc3 razor it renders the html similar to
<div class="editor-label">
@Html.LabelFor(model => model.Email)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.Email)
@Html.ValidationMessageFor(model => model.Email)
</div>
Which is inside a fieldset. I don't really want this behavior is it possible to replace the default style of html to my own? I dont want fieldsets and I want to remove the css class details for the div tags as I think its a little of an overkill for what I need.
Any suggestions would be great