在C#中的字符串中添加几个字符后添加一个新行

时间:2013-09-29 23:51:41

标签: c# visual-studio newline

我的网站上有一个具有特定宽度的列表框。问题是有时文本太大而且从列表中删除了。我希望在列表框中的每个条目(每个)上插入一个新行,以便它自动成为一个新行。

有可能吗?

列表框(注意正在裁剪的文本)

enter image description here

代码

 <asp:ListBox ID="lstLegalEntity" runat="server" SelectionMode="Multiple" CssClass="client-bg-repeat" ForeColor="#000060" AutoPostBack="True">
    <asp:ListItem>Select One Two Three Four Five Six Seven Eight</asp:ListItem>
    <asp:ListItem>Select One Two Three Four Five Six Seven Eight</asp:ListItem>
    <asp:ListItem>Select One Two Three Four Five Six Seven Eight</asp:ListItem>
    <asp:ListItem>Select One Two Three Four Five Six Seven Eight</asp:ListItem>
</asp:ListBox>

我希望我可以将每个List Item的文本放入一个函数中,该函数在每7个字符后插入一个“换行符”,这样就不会切断任何条目,并且每个长条目都以两行显示。

感谢。

0 个答案:

没有答案