I couldn't make the theme/skin thing work in VS2008. Same asp.net2.0 code works fine in VS2005.
I am using Masterpage, and inside content page I would have something like:
<asp:Button ID="testid" runat="server" SkinID="RedBlueButton" Text="TestButton"></asp:Button>
and in the App_Themes/Default/button.skin file, I would have something like
<asp:Button SkinID="RedBlueButton" runat="server"
BackColor="Blue"
ForeColor="Red"
Font-Name="Arial"
Font-Size="9px" />
but the button still shows white. Anybody have any idea why? Thanks.