Hi Expert!
I'm working on MVC project. I have bind string into MVC control through property. I want to display exceed string as below
"Model View Control Demo..."
My code as below
@Html.DisplayFor(modelItem => item.Description)
Please reply ASAP!
Thanks in advance!
AVADHESH PATEL
16-Feb-2013Hi Jeet!
Create helper method for remove exceede string from fixed lenght
Use this method in place of your MVC control
@Truncate(item.Description, 30)