In my .aspx I have this :
<style type="text/css">
.item .item_background .item_general_info .button_wrapper .add_button {
background-color: /* MyProp from code behind */
}
</style>
On the code behind :
public String MyProp
{
get {return DB.GetColor();}
}
How can I set the value of the background-color dynamically from the code behind ?
Thanks