InterviewSolution
| 1. |
Explain .net Mobile Input Controls? |
|
Answer» .NET provides a variety of INPUT CONTROLS to enable interaction form the user: NUMERIC input: The textbox has a numeric attribute which if set to true ACCEPTS only numeric values. Password input: The textbox has a password attribute which when set to false displays stars(*) in the textbox as the user types in VALUE. .NET provides a variety of input controls to enable interaction form the user: Numeric input: The textbox has a numeric attribute which if set to true accepts only numeric values. Password input: The textbox has a password attribute which when set to false displays stars(*) in the textbox as the user types in value. |
|