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>
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
You need to use substring.
Eval("description").ToString().Substring(0,60)
I believe thats all you need.
Method 2
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;
}
Method 3
Eval("description").ToString().Substring(0, 60);
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0