Hi
I want to trim the end of a string placed on my page.
I want to make it so that even if the text is 100 char long it will only display the first 15 characters.
Is this correct, i cant seem to make it work.
Regards
Ant
<%#Container.DataItem("OutboundCarrierName").ToString.Trim("15") %>
use Substring function in place of this:
<%#Container.DataItem("OutboundCarrierName").ToString().Substring(0,15) %>
thanks
Perfect, that works.
0 comments:
Post a Comment