Jono
Jono

Reputation: 4076

A list of all asp controls for .net 4

I'm looking for a text list of all the ASP controls for .NET, ideally with accessible attributes.

Something like:

asp:Button - runat, visible, text, enabled, onclick
asp:Label - runat, visible, text, enabled, onclick
etc.

My intent is to use them in auto-complete with a text-editor.

Upvotes: 0

Views: 4013

Answers (1)

Jono
Jono

Reputation: 4076

From http://www.w3schools.com/aspnet/aspnet_examples.asp

HTMLAnchor
HTMLButton
HTMLImage
HTMLInputbutton
HTMLInputCheckbox
HTMLInputHidden
HTMLInputImage
HTMLInputRadiobutton
HTMLTable
HTMLTextarea
AdRotator
Button
Calendar
Checkbox
CheckboxList
DataList
DropdownList
Hyperlink
Image
ImageButton
Label
LinkButton
Listbox
Literal
Panel
Radiobutton
RadiobuttonList
Repeater
Table
Textbox
XML
CompareValidator
CustomValidator
RangeValidator
RegularExpressionValidator
RequiredFieldValidator
Validationsummary

Upvotes: 1

Related Questions