Kentico Eval(' DocumentType')

时间:2016-11-09 14:51:36

标签: kentico

这里有什么问题吗?我试图获得一个文档类型,没有期限。



<script runat="server">
  // we need to remove the . from the DocumentType
  
  public string dt;  
  
  protected override void OnDataBinding(EventArgs e){
    dt = Eval("DocumentType").ToString();
    dt = dt.TrimStart('.');
  }
</script>

<li>
  <p class='title'><a href='<%# GetDocumentUrl() %>' target='_blank' class='type-<%# dt %>' data-name='<%# Eval("FileName") %>'><%# Eval("FileName") %></a></p>
  <p class='description'><%# Eval("FileDescription") %></p>
  <a href='<%# GetDocumentUrl() %>' target='_blank' class='btn btn-chevron type-<%# dt %>' data-name='<%# Eval("FileName") %>'>Download</a>
</li>
&#13;
&#13;
&#13;

1 个答案:

答案 0 :(得分:1)

TrimStart只会修剪前导字符。您需要dt.Replace(".", string.Empty)