Theme Style ASP.Net

To create multiple definitions of a single element, 
you use the SkinID attribute to differentiate among the definitions. 
File: Summer.skin file
 
            Font-Size="X-Small" />
   
            Font-Size="X-Small" BorderStyle="Solid" BorderWidth="1px"
            BorderColor="#004000" Font-Bold="True" />
   
            Font-Size="X-Small" BorderStyle="Dotted" BorderWidth="5px"
            BorderColor="#000000" Font-Bold="False" SkinID="TextboxDotted" />
    
            Font-Size="X-Large" BorderStyle="Dashed" BorderWidth="3px"
            BorderColor="#000000" Font-Bold="False" SkinID="TextboxDashed" />
    
            Font-Size="X-Small" BorderStyle="Solid" BorderWidth="1px"
            BorderColor="#004000" Font-Bold="True" BackColor="#FFE0C0" />
 
A simple .aspx page that uses the Summer.skin file with multiple text- box style definitions 
 
<%@ Page Language="VB" Theme="Summer" %>
    


    Different SkinIDs


    
    


        Textbox1
    


                 SkinId="TextboxDotted">Textbox2
    


                 SkinId="TextboxDashed">Textbox3