views:

38

answers:

1

You can refer to this post of mine.

WebControl.Attributes.Add(string key, string value);

This is how Attributes property of an asp.net web control can be used.

Can anyone provide me with the complete list of keys that are available for use with web controls?

Any web link that contains the comprehensive list would be appreciated.

+1  A: 

Attributes are passed through directly to the rendered HTML, so the comprehensive list you are looking for is the W3C's documentation on HTML: W3C's Index of HTML 4 Attributes

Daniel Schilling