“Substring” a GridView BoundField object

2020-04-17 05:44发布

Can anyone tell me how to substring a GridView BoundField object please?

I tried this so far and it hasn't worked. Thank you.

<ItemTemplate>
<asp:Label ID="Label1" runat="server" Text='<%# ChopString((string)Eval("description")) %>'></asp:Label>
</ItemTemplate>

3条回答
We Are One
2楼-- · 2020-04-17 05:53
Eval("description").ToString().Substring(0, 60);
查看更多
姐就是有狂的资本
3楼-- · 2020-04-17 05:55

You need to use substring.

   Eval("description").ToString().Substring(0,60)

I believe thats all you need.

查看更多
forever°为你锁心
4楼-- · 2020-04-17 06:10

It says The name 'ChopString' does not exist in the current context

Make sure your ChopString method is either protected or public in the page's codebehind.

Maybe as previous user, said, these may not be ASP.NET functions?

ChopString is not a built-in function. Make your own:

ASPX Codebehind

Example:

protected string ChopString(string val)
{
    //Check that val is a valid candidate for Substring, i.e. check for nulls, appropriate length, etc
    //...
    //...
    string returnVal = val.Substring(0,60); //Return first 60 chars
    return returnVal;
}
查看更多
登录 后发表回答