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.....
controller.cs
ExpDetailsVDOTitle="welcome to All"
Index.cshtml
string ss = ".....";
@Model.ExpDetailsVDOTitle.Substring(0, 10) @ss.ToString();
O/p : welcome to.....
No comments:
Post a Comment