使用 c# 的多个 html 类

本文关键字:html 使用 | 更新日期: 2023-09-27 18:34:15

我想在 mvc3 c# 中向表添加更多类。

我现在有这个:

<tr class=@(item.cancelled ? "cancelled" : "")> 

是否可以在此处添加一个额外的类,例如:

<tr class= "cancelled added">

使用 c# 的多个 html 类

 <tr class="@(item.cancelled ? "cancelled" : "") added"> 

更好的使用方法是这样的:

@using (Html.Td(item, isBlocked))
{
    <div>some contents for the td</div>
}
like this:
public static class HtmlExtensions
{
    private class TdElement : IDisposable
    {
        private readonly ViewContext _viewContext;
        private bool _disposed;
        public TdElement(ViewContext viewContext)
        {
            if (viewContext == null)
            {
                throw new ArgumentNullException("viewContext");
            }
            _viewContext = viewContext;
        }
        public void Dispose()
        {
            this.Dispose(true);
            GC.SuppressFinalize(this);
        }
        protected virtual void Dispose(bool disposing)
        {
            if (!this._disposed)
            {
                _disposed = true;
                _viewContext.Writer.Write("</td>");
            }
        }
    }
    public static IDisposable Td(this HtmlHelper html, ItemViewModel item, bool isBlocked)
    {
        var td = new TagBuilder("td");
        var title = item.Cancelled 
            ? "Cancelled" 
            : item.Confirmed 
                ? isBlocked 
                    ? "blocked date" 
                    : "" 
                : "Confirm needed";
        if (!string.IsNullOrEmpty(title))
        {
            td.Attributes["title"] = title;
        }
        html.ViewContext.Writer.Write(td.ToString(TagRenderMode.StartTag));
        var element = new TdElement(html.ViewContext);
        return element;
    }
}