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
2010-01-16 03:23:48