Hi pandeygolu420...,
Before passing the parameter to the procedure you need to convert the text to title case.
So you need to use TextInfo class ToTitleCase method.
Refer below code.
Code
C#
string title = "welcome to aspsnippets";
title = (new CultureInfo("en-US", false).TextInfo).ToTitleCase(title);
VB.Net
Dim title As String = "welcome to aspsnippets"
title = (New CultureInfo("en-US", False).TextInfo).ToTitleCase(title)
Output
Welcome To Aspsnippets