Yes, I can set the Border, BorderStyle, etc. properties directly (and that works) but I need to have two sides one color and the other two sides another color.
In plain old HTML I would just do:
style="border-left:#cdcdcd 1 solid;border-top:#cdcdcd 1 solid;border-right:#999999 2 solid;border-bottom:#999999 2 solid;"
Is there a way to add a style string like this to the DynamicMenuStyle?
In the resulting HTML I see that there are multiple classes listed:
class="aspnet_s0 dyMenu1 aspnet_s8"
I've never used multiple classes before in this manner (although I see that this is supposed to work according to various articles I've found on the web). "aspnet_s8", I noticed, is completely blank in the STYLE declaration.
I keep shying away from ASP.NET for just this reason-- I can easily do this in HTML and/or ASP but have a hard time finding the right properties, etc. in ASP.NET.
Thanks for your help!
Michael Creamer