ViewState with example in asp.net C#

Sunday, January 9, 2011

How to convert first latter of textbox in Upper case using javascript.

Simplest way to convert first character of textbox in upper case........


<input type="text" onblur="this.value = this.value.substr(0, 1).toUpperCase() + this.value.substr(1);"/>



No comments:

Post a Comment