Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does anyone know the syntax for creating a custom HtmlHelperextension method which behaves like..

<% using (Html.BeginForm()) {%>

<p>Loads of html stuff here </p>

<% } %>

I'm thinking of something along the lines of....

<% using (Html.BeginTable("Column Heading 1", "Column Heading 2")) {%>

<% } %>

Any ideas?

Cheers,

ETFairfax

share|improve this question

2 Answers

up vote 8 down vote accepted

You need to create a class that implements IDisposable interface and return that from your HtmlHelper.

public static class HtmlHelperTableExtensions {
    private class TableRenderer : IDisposable {
        HtmlHelper html;
        public TableRenderer(HtmlHelper html) {
           this.html = html;
        }
        public void Dispose() {
           HtmlHelperTableExtensions.EndTable(html);
        }
    }
    public static IDisposable BeginTable(this HtmlHelper html) {
        // print begin table here...
        return new TableRenderer(html);
    }
    public static void EndTable(this HtmlHelper html) {
        // print end table here...
    }
}
share|improve this answer
nice one. Thanks Mehrdad – ETFairfax Oct 30 '09 at 16:03
3  
Just to clarify for those reading this, you need to call HttpContext.Current.Response.Write("<yourtag>"); in the places that Mehrdadhas written // print begin table here, and // print end table here. – ETFairfax Oct 30 '09 at 16:05

You'd need to have a method something like this:

public static IDisposable BeginTable(this HtmlHelper html, ...)
{
    // write the start of the table here

    return new EndTableWriter();
}

Where the EndTableWriter is something like this:

private class EndTableWriter : IDisposable
{
    public void Dispose()
    {
        // write the end of the table here
    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.