ASP.NET MVC 1 shipped with a set of HTML helper methods that
can be used within view templates to help with the generation of HTML UI.
For example, to output a textbox you could write code (within your .aspx view
template) using the Html.TextBox() helper method below:
Figure 1
The first parameter to the helper method above supplies the
name/id for the textbox, and the second parameter specifies the value it should
have. The helper method above would then render HTML like below back to a
browser:
Figure 2