This example explain the understanding of convert to Proper Case in ASP.NET using VB.Net
Example:
Example:
Dim strText As String = "welcome to allwin smart"Output:
Dim strPropCaseText As String = String.Empty
strPropCaseText = StrConv(strText, VbStrConv.ProperCase)
txtOutput.Text = strPropCaseText.ToString
Welcome To Allwin Smart
0 comments:
Post a Comment