tags:

views:

26

answers:

1

I am making a blog site, on the home page I wont to display the first 50 characters of the blog description, how do I do that with ASP.NET MVC?

+1  A: 

string.substring(Math.Min(string.length, 50)) might be a starting point.

No Refunds No Returns