当前位置: 代码迷 >> ASP.NET >> Gridview某列文字太长,怎么解决
  详细解决方案

Gridview某列文字太长,怎么解决

热度:2026   发布时间:2013-02-25 00:00:00.0
Gridview某列文字太长,如何解决?
有没有设置多少个字符自动换行的属性啊???

------解决方案--------------------------------------------------------
定好宽,并将它的item样式wrap属性定为true
------解决方案--------------------------------------------------------
给你个例子:
<asp:Label ID= "Label2 " runat= "server " EnableViewState= "False " Font-Bold= "True "
Text= ' <%# ((string)((DataRowView)Container.DataItem)[ "FLUrl "]).Length> 20?((string)((DataRowView)Container.DataItem)[ "FLUrl "]).Substring(0,20)+ "... ": (string)((DataRowView)Container.DataItem)[ "FLUrl "] %> '>
</asp:Label>
------解决方案--------------------------------------------------------
呵呵 楼上的真全面 够清晰