Hello,

I have an old webpage that uses an RDS control. The declaration of the control looks like this:

<OBJECT classid="clsid:BD96C556-65A3-11D0-983A-00C04FC29E33"
ID=dsoWM HEIGHT=1 WIDTH=1 VIEWASTEXT></OBJECT>

And down the page I data-bind a table

<table id=wmtable datasrc="#dsoWM"><tr><td><span datafld="Name"></span>&nbsp;</td><td><span datafld="City"></span>&nbsp;</td><td><span datafld="State"></span>&nbsp;</td><td><span datafld="MemberSince"></span>&nbsp;</td></tr></table>

My client now wants to color-code certain fields of the table. For example, all the records for people with MemberSince = 2003 should be colored light blue.

I am not sure how to achieve this without re-writing the page from scratch. Is it possible to tap into the rendering of the RDS control? Or, can I data-bind a color property???

Any ideas would be greatly appreciated.

Evgueni