子字符串代码在c#中不起作用

时间:2015-06-18 05:08:32

标签: c# asp.net

我在下面写了一行代码:

<asp:Label ID="lblDetail" runat="server" Text='<%#_14Communities.Web.CODEFILES.SECUREFILES.WebUtility.LimitString(Server.HtmlDecode((string)Eval("Purpose")).ToString().Replace("\n","<br/>"),200) %>'></asp:Label>

现在我想只显示200个字符。它不起作用。

1 个答案:

答案 0 :(得分:0)

您可以使用简单的内在dotNet函数substring

yourString.Substring(0, 200);