Setting ASP.NET Server Control Properties Programmatically
You can set Web server control properties programmatically to change the control's appearance and behavior at run time. Properties for Web server controls are strongly typed, so the exact technique you use to set properties depends on what type of property you are setting. For example, setting a unit property such as width is different from setting a color property. The sections below provide details about setting different types of properties. For information about the properties for a specific control, search for the name of the control class in the Help index, such as "Button class (System.Web.UI.WebControls)".
Note
You set HTML server control properties slightly differently. For details, see How to: Set HTML Server Control Properties Programmatically.
In This Section
How to: Set Web Server Control Properties Based on Simple Values or Enumerations
How to: Set HTML Attributes for Controls in ASP.NET Web Pages
How to: Read HTML Attributes for Controls in Web Forms Pages
See Also
Concepts
ASP.NET Web Server Controls Overview