Convert first letter of word to Capital
Convert first letter of word to Capital < html xmlns ="http://www.w3.org/1999/xhtml"> < head runat ="server"> < title ></ title > < script type ="text/javascript" language ="javascript"> function FirstCaps(id) { var txt = document.getElementById(id); txt.value = txt.value.replace(/\w\S*/g, function (txt) { return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase(); }); } </ script > </ head > < body > < form id ="form1" runat ="server"> < div > < asp : TextBox ID ="TextBox1" runat ="server" onkeyup ="FirstCaps(this.id)"...