<%= tag.Name %>
<%= new HtmlText("Name", tag.Name, 256) { Class = "span2" }.AddAttribute("Placeholder", "建议四字以内").Style(new {Width="100px" })%>
<%= new HtmlYKTip("Name")%>
|
<%= (AVA.ResourcesPlatform.Model.Pub.TagTagTypeEnum)tag.TagType %>
|
<%= (AVA.ResourcesPlatform.Model.Pub.TagIsRecommendEnum)tag.IsRecommend %>
<%= new HtmlCheckBox("IsRecommend",tag.IsRecommend, 1, 0) { }%>
|
<%= tag.ParentCategory == null ? "暂无学科" : tag.ParentCategory.Name %>
<%= new HtmlSelect("ParentCategory","Name","Guid","Guid") { Option = this.ListCategory, SelectedValue = tag.ParentCategory == null ? "" : tag.ParentCategory.Guid }.InsertOption("::选择::", "", 0)%>
|
|