I am writing a custom validation set that will display all missing elements on a div. I\'d like to be able to use a custom @Html.BeginForm() method that will w
@Html.BeginForm()
You need to write an extension method for the HtmlHelper class that prints to helper.ViewContext.Writer.
HtmlHelper
helper.ViewContext.Writer
The method should return an IDisposable that prints the closing tag in its Dispose method.
IDisposable
Dispose