`
白玉水堂
  • 浏览: 14685 次
  • 性别: Icon_minigender_1
  • 来自: 广州
最近访客 更多访客>>
社区版块
存档分类
最新评论

MVC中截取字符串长度

    博客分类:
  • MVC
 
阅读更多
   <%
    int tr=0;
    string AgentName = "b";
        if (Model != null)
       
            foreach (VoucherOrder item in Model)
            {
        %>
        <tr <%if(tr==1){ %>class="tablehtr" <%} %>>
            <td height="28px"> 
            <%
                 if (item.AgentName.Length >4)
                {
                    AgentName = item.AgentName.Substring(0, 4) + "...";
                }
                else
                {
                    AgentName = item.AgentName;
                } 
                %>
                <label id="AgentName" title="<%=item.AgentName %>"><%=AgentName%></label>

            </td>    56574952       
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics