Friday, 18 March 2016

Display First 10 Digits in MVC

Display only First 10 Digits in MVC    

controller.cs
ExpDetailsVDOTitle="welcome to All"

Index.cshtml                       
   string ss = ".....";
  @Model.ExpDetailsVDOTitle.Substring(0, 10) @ss.ToString();

O/p :   welcome to.....

No comments: