When working with ASP.NET code behind, I often find myself adding a css
style to an element using the following command:
elementID.Style.Add("padding", "20px");
However, once this css
property is added to elementID
, the question arises - how can I access this property again in the code behind?