1

我正在尝试使用 ASP.NET MVC 中的 @helper 实用程序创建以下帮助程序。想法是创建一个 Panel 并从页面调用此帮助程序以设置面板的标题和正文(我希望在同一页面上有多个面板,因此我不能使用布局)。

这里是帮手:

@helper PanelHelper(string title, string body){
    <fieldset class="fieldset-border-2">
        <legend style="display: none;">Edit</legend>
        <div style="display: table;">
            <div style="display: table-row;">
                <div class="panel-first-row" style="display: table-cell;">
                    <div style="border-bottom: 1px solid #cecece; padding-left: 5px; height: 25px;">
                        <div style="display: table; margin: 9px 0 9px 0;">
                            <div style="display: table-row;">
                                <div class="title" style="display: table-cell;">
                                    @title
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
            <div class="edit-row-separator" style="display: table-row;">
            </div>
            <div style="display: table-row;">
                <div style="display: table-cell;">
                    @body
                </div>
            </div>
        </div>
    </fieldset>
}

在这里我想如何调用这个助手:

@Helpers.PanelHelper("Customers")
{
    <div style="display: table; width: 100%;">
        <div style="display: table-row; width: 100%;">
           ................ HTML => Customer Fields ......................
        </div>
    </div>
}
4

1 回答 1

0

你真的应该这样称呼它:

@{
   string body = "<div style=\"display: table; width: 100%;\">
        <div style=\"display: table-row; width: 100%;\">
           ................ HTML => Customer Fields ......................
        </div>
    </div>";
}


@PanelHelper("Customers", body)

在这里查看更多信息:http ://weblogs.asp.net/scottgu/archive/2011/05/12/asp-net-mvc-3-and-the-helper-syntax-within-razor.aspx

于 2012-07-17T20:37:24.200 回答