A skin is a definition of styles applied to the server controls in your ASP.NET page.
Skins can work in conjunction with CSS files or images.
The skin file can have any name, but it must have a .skin file extension.
The Summer.skin file.
ForeColor="#004000"
Font-Names="Verdana"
Font-Size="X-Small" />
ForeColor="#004000"
Font-Names="Verdana"
Font-Size="X-Small"
BorderStyle="Solid"
BorderWidth="1px"
BorderColor="#004000"
Font-Bold="True" />
ForeColor="#004000"
Font-Names="Verdana"
Font-Size="X-Small"
BorderStyle="Solid"
BorderWidth="1px"
BorderColor="#004000"
Font-Bold="True"
BackColor="#FFE0C0" />
Control definitions must contain the Runat="server" attribute.
No ID attribute is specified in the skinned version of the control.
Using the Summer theme in an ASP.NET page.
<%@ Page Language="VB" Theme="Summer" %>
INETA