Close tag on closing brace using Html Helper in ASP.net MVC
How can I create a helper like the Html.Form helper, which closes the tag when you close the开发者_JS百科 braces?
It needs to implement IDisposable
and render the closing brace in the Dispose
method. You can then have the same using
behavior as with the HtmlForm helper.
精彩评论