如何動態代入樣式?
在樣式文件中寫入<style type = "text/css">
mycss1
.zmyBtn {
height : 24;
color : black;
font-size : 9pt;
cursor : hand;
background-color : blue;
line-height : 11pt;
cursor : hand;
<%=zmybutton%>
}
其中zmybutton原本是想在其它asp文件給寫入樣式,來達到動態改變樣式的目的,(現在我就是在global.asa中當它做成一常量, 如: <% zmybutton = "bgcolor= darkblue; forecolor=#f0f" %>
將這個asp變量寫入我的樣式文件, (這步還看不出效果,因為沒有輸出)
但是一旦,我要在頁面文件中調用 如: <input type="button" name="bnt1" class="zmybtn" value="ass" > ,在運行時,發現頁面上的按鍵根本不是背景為我在global中寫入的深蘭色,
是哪方面的手續少了? 為何這里沒有呢 ?
這個問題,現在超出我的解決範圍,故請高手指教