"Dynamic" CSS styling in asp .net?
- by DeeMac
I have the following inside a content place holder in my asp .net pages:
<style type="text/css">
#sortable1 { list-style-type: none; margin: 0; padding: 0; zoom: 1; }
#sortable1 li { margin: 3px; padding: 3px; width: 90%; border: 1px solid #000000; background: #000000; color: #FFFFFF; }
#sortable1 li.highlightWorkflow { background: #FFFF00; color: #000000; }
</style>
I would ideally like to swap the #00000's for values held on the page, maybe in hidden fields. Is this possible?