|
There are number of ASP.NET mobile Web Forms controls support user input, including the TextBox and List controls. You can place one or more user input controls, along with other mobile controls such as labels, on the form when you are constructing a form that allows user inputs. You cannot raise an event for any of the controls until the user completes. We should have only a Limited number of controls placed on a single form. For most user input forms, you also need to provide a way for the user to submit input back to the server. We can accomplish this by placing a Command control on the form. All the samples in this section use a Command control. For larger amount of input a TextView control is a better choice.
|