0% found this document useful (0 votes)
3 views

HTML Controls in ASP Net

The document outlines various HTML controls used in ASP.NET forms, including Text Field, Text Area, Password Field, and others. Each control serves a specific purpose, such as inputting text, selecting files, or presenting options. Additionally, it describes functionalities like displaying images, creating buttons, and managing form submissions.

Uploaded by

anuragbhilare8
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views

HTML Controls in ASP Net

The document outlines various HTML controls used in ASP.NET forms, including Text Field, Text Area, Password Field, and others. Each control serves a specific purpose, such as inputting text, selecting files, or presenting options. Additionally, it describes functionalities like displaying images, creating buttons, and managing form submissions.

Uploaded by

anuragbhilare8
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

HTML Controls in ASP.

NET

Text Field

Gives the user an input area on an HTML form.

Text Area

Used for multi-line text input.

Password Field

An input area on an HTML form that masks typed characters as asterisks.

File Field

Allows the user to select a file from their local machine using a Browse button.

CheckBox

Gives the user a checkbox that they can select or clear.

Radio Button

Used to offer two or more options, and allows the user to choose one of the options.

Table

Allows you to present information in a tabular format on an HTML form.

Image

Displays an image on the HTML form.

ListBox

Displays a list of items to the user. You can set the size from two or more to specify how many items you

wish show. If there are more items than will fit within this limit, a scroll bar is automatically added to this

control.

Dropdown

Displays a list of items to the user, but only one item at a time will appear. The user can click a down arrow

from the side of this control and all list items will be displayed.

Horizontal Rule
Displays a horizontal line across the HTML page.

Button

It is used to create HTML form button.

Reset Button

Resets all other HTML form elements on a form to a default value.

Submit Button

Automatically POSTS the form data to the specified page listed in the Action attribute in the FORM tag.

You might also like