Display characters in uppercase in textbox
How one can implement the text box to display characters in the uppercase?
Expert
TextBox class has a CharacterCasing property that is used to identify case of content for the text box. This property allows the value from a CharacterCasing enumeration of the .NET Framework. Members specified in a CharacterCasing enumeration are Normal, Lower and Upper. We can choose any one of the enumerations as the value for a CharacterCasing property of the particular text box, like:
textBox1.CharacterCasing = CharacterCasing.Upper;
Explain the code-behind feature of ASP.NET?
Explain about several validation controls which are available in ASP.NET AJAX 4.0?
List the different ways to send the data across pages in the ASP.NET?
Illustrate the various types of contract available in the WCF?
State various limitations of the AJAX.
What is meant by Delegate?
Explain Common Type System (CTS)?
In what way we can check/uncheck every item in a CheckedListBox control in the .NET 4.0 framework?
Differentiate between Assembly and NameSpace?
In which statement we can execute LINQ query?
18,76,764
1931351 Asked
3,689
Active Tutors
1458610
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!