Text box to show characters in uppercase
How can a text box be enforced to show characters in the uppercase?
Expert
TextBox class holds the CharacterCasing property that is used for specifing the case of the content for a text box. This property takes a value from the CharacterCasing enumeration of .NET Framework. Members defined in the CharacterCasing enumeration are Upper, Lower, and Normal. Any one of these enumerations can be selected as a value for the CharacterCasing property of a indicated text box, as shown in the given code: textBox1.CharacterCasing = CharacterCasing.Upper;
Explain State Management? List the ways to maintain the state in .NET?
Illustrate the difference between the const and readonly?
Why do we require the nested master pages in the Web site?
Explain what is the CLI and also if it is same as that of CLR?
Give the basic syntax of LINQ query in Visual Basic as well as in C#.
State what are Collections and Generics?
Illustrate some of the points regarding UserControl in WPF?
Write the name of the methods available in .NET 4.0, which are used to add and delete items from the ListBox control?
Write down some of the benefits of XAML?
Name the events which occur when the client requests the ASP.NET page from IIS server?
18,76,764
1921968 Asked
3,689
Active Tutors
1422313
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!