在我的.aspx我有這樣的:如何從屬性後面的代碼獲取樣式屬性的值?
<style type="text/css">
.item .item_background .item_general_info .button_wrapper .add_button {
background-color: /* MyProp from code behind */
}
</style>
在後面的代碼:
public String MyProp
{
get {return DB.GetColor();}
}
我如何設置從後面的代碼動態背景顏色的值?
感謝
你有屬性的服務器控件,你想獲得屬性? – Veverke
@ Veverke:不,它不是runat服務器 – ron