本文介绍了如何在gridivew的模板字段的项模板中打破一个长字?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在gridivew的模板字段的项目模板中打破长字?

< asp:TemplateColumn HeaderText =New EMPID> 
< itemtemplate>
< asp:Label ID =Deletedrunat =serverStyle =word-wrap:break-word; Text ='<%#DataBinder.Eval(Container,DataItem.EmpId_Temp)%>'>< / asp:Label>

< / itemtemplate>
< headerstyle width =7%/>
< / asp:TemplateColumn>











这里的上述样式与IE 8浏览器的兼容性视图一起使用。但没有兼容性查看它走出gridview。

解决方案

How to break a long word in the item template of template field of gridivew?

  <asp:TemplateColumn HeaderText="New EmpId">
                                                                    <itemtemplate>
                                                                        <asp:Label ID="Deleted" runat="server" Style="word-wrap: break-word;" Text='<%# DataBinder.Eval(Container, "DataItem.EmpId_Temp") %>'></asp:Label>
                                                                    
</itemtemplate>
                                                                    <headerstyle width="7%" />
                                                                </asp:TemplateColumn>






Here the above style does work with compatibility view of IE 8 browser. But without compatibility view its going out of the gridview.

解决方案


这篇关于如何在gridivew的模板字段的项模板中打破一个长字?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-02 03:12