“Substring” a GridView BoundField object

后端 未结 3 1222
南笙
南笙 2021-01-22 03:57

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

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




        
相关标签:
3条回答
  • 2021-01-22 04:40

    You need to use substring.

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

    I believe thats all you need.

    0 讨论(0)
  • 2021-01-22 04:42

    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;
    }
    
    0 讨论(0)
  • 2021-01-22 04:50
    Eval("description").ToString().Substring(0, 60);
    
    0 讨论(0)
提交回复
热议问题