Convert a string to Proper Case
===========================
// Use this Namespace
using System.Globalization;
// Code
string myString = "thIS is tHE sAmple tExt to shoW tHIs examPle !!";
TextInfo TI = new CultureInfo("en-US",false).TextInfo;
Response.Write (TI.ToTitleCase( myString ));
Wednesday, July 23, 2008
Use ICallbackEventHandler in Asp.Net 2.0
Use ICallbackEventHandler in Asp.Net 2.0
==================================
For Example, you have page Layout is like this :
==================================
For Example, you have page Layout is like this :