Wednesday, October 29, 2008

Automatically change text to Uppercase

Try this with textbox in page Load

TextBox1.Attributes.Add("onblur", "this.value=this.value.toUpperCase();");

Good Luck

No comments: