Thursday, February 3, 2011

Force TextBox Values to Capital Letters whenever user types(Simple way)


create a css class with the following definition and apply the cssclass
to the Textbox.
.MakeCapsStyle{text-transform: uppercase;}
<asp:textbox id=”id” runat=”server”
cssclass=”MakeCapsStyle”>
</asp:textbox>

No comments :

Post a Comment