Standard Tab, Toolbox

 

This tab displays a list of ASP.NET server controls that you can add to ASP.NET Web pages. This tab is available in both Design view and Source view.

Note

You can also create HTML server controls on your Web Forms pages by adding elements from the HTML tab of the Toolbox and then converting them to controls. For information on the difference between these controls, see Introduction to ASP.NET Server Controls.

To access the Standard tab in the Toolbox

  1. In Microsoft Visual Web Developer, click View, and then click Toolbox.

    Alternatively, you can press CTRL+ALT+X.

  2. In the Toolbox, click the arrow sign (>) next to the Standard menu item.

    This expands the list of standard tools.

The Toolbox is displayed by default on the left side of the Visual Web Developer window, but you can move it by dragging the title bar.

To restore the Toolbox to its original location

  1. Right-click the title bar and select Dock.

    This enables the Toolbox to become part of the Visual Web Developer design surface.

  2. Click the title bar, and begin to drag it in order to display the destination arrows.

  3. Drag the title bar so that your mouse is positioned over the destination arrow that points left, and release the mouse button.

For more information about using the server controls that are available in the Standard tab of the Toolbox, see Standard Toolbox Controls.

Tasks

UI Elements

  • AdRotator
    Displays a sequence (predefined or random) of images.

  • BulletedList
    Displays a bulleted list (or similar variant) bound to a data source.

  • Button
    Submits the Web Forms page to the server for processing.

  • Calendar
    Displays a calendar to allow users to select a date.

  • CheckBox
    Displays a single box that users can select or clear.

  • CheckBoxList
    Creates a grouping of check boxes. The list control makes it easy to create check boxes using data binding.

  • DropDownList
    Allows users to either select from a list or enter text.

  • FileUpload
    Creates a control with a text box and button that can be used to specify a file from a local computer to upload to the server, and that can be programmed with server code.

  • HiddenField
    Creates an HTML <input type=hidden> element that can be programmed with server code.

  • HyperLink
    Creates a Web navigation link.

  • Image
    Displays an image.

  • ImageButton
    Like a Button control, but incorporates an image instead of text.

  • ImageMap
    Displays an image that exposes regions that users can click.

  • Label
    Displays text that users cannot directly edit.

  • LinkButton
    Like a Button control, but has the appearance of a hyperlink.

  • ListBox
    Displays a list of choices. Optionally, the list can allow multiple selections.

  • Literal
    Is rendered as literal text (with no HTML tags), providing a lightweight way to put text into the page from server code.

  • Localize
    Lets you display localized text in a specific area on your page.

  • MultiView
    Contains View controls, allowing you to programmatically display different content.

  • Panel
    Creates a borderless division on the form that serves as a container for other controls.

  • PlaceHolder
    Provides a container to store server controls dynamically added to the Web page. It does not produce any visible output and is used only as a container for other controls on the Web page.

  • RadioButton
    Displays a single button that can be selected or cleared.

  • RadioButtonList
    Creates a grouping of radio buttons. Inside the group, only one button can be selected at a time.

  • Substitution
    Contains updateable cache content.

  • Table
    Creates a table as a server control. You can add rows and columns in server code.

    Note

    If you want to use a table for layout, use an HTML table, not the Table server control. For details, see NIB: HTML Table Editing in Visual Web Developer.

  • TextBox
    Displays text entered at design time that can be edited by users at run time or changed programmatically.

  • View
    A panel to display in a MultiView control.

  • Wizard
    Displays a multipane control that steps users through a process.

  • XML
    Displays information from an XML file or stream, and optionally allows you to apply XSLT transformations.

See Also

Toolbox, Data Tab
Toolbox, HTML Tab