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
In Microsoft Visual Web Developer, click View, and then click Toolbox.
Alternatively, you can press CTRL+ALT+X.
In the Toolbox, click the plus 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
Right-click the title bar and select Dockable.
This enables the Toolbox to become part of the Visual Web Developer design surface.
Click the title bar, and begin to drag it in order to display the destination arrows.
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
How to: Add BulletedList Web Server Controls to a Web Forms Page
How to: Add CheckBox Web Server Controls to a Web Forms Page
How to: Add CheckBoxList Web Server Controls to a Web Forms Page
How to: Add DataList Web Server Controls to an ASP.NET Web Page
How to: Add DropDownList Web Server Controls to a Web Forms Page
How to: Add HyperLink Web Server Controls to a Web Forms Page
How to: Add ImageButton Web Server Controls to a Web Forms Page
How to: Add MultiView Web Server Controls to a Web Forms Page
How to: Add PlaceHolder Web Server Controls to a Web Forms Page
How to: Add RadioButton Web Server Controls to a Web Forms Page
How to: Add RadioButtonList Web Server Controls to a Web Forms Page
How to: Add Repeater Web Server Controls to a Web Forms Page
How to: Add Web Server Controls to a Web Forms Page Using the Web Forms Designer
How to: Format Calendar Web Server Control Elements Using Styles
How to: Populate List Web Server Controls from a Data Source
How to: Respond to User Clicks in BulletedList Web Server Controls
How to: Use Resources to Set Property Values in Web Server Controls
Walkthrough: Displaying and Tracking Advertisements with the AdRotator Control
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.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 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.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
Tasks
How to: Manipulate Toolbox Tabs