hello
i m useing gridview in asp.net and one column "Description" that have more data
n show all data in every column so my gridview is distrub
i want to show small amount of description in column and mouse hover show full data
how can i do......
pleas hellp ,me
i
Loading

CrishPosted May 26, 2010, 6:48 AM
use below code for your solution in query
case when LEN(Description) > 150 then substring(Description,0,148) + '...' Else Description End as Description
thanks
Don't forget to Mark Do you like this Answer that solved your problem!