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.
<asp:Label Runat="server"
ForeColor="#004000"
Font-Names="Verdana"
Font-Size="X-Small" />
<asp:Textbox Runat="server"
ForeColor="#004000"
Font-Names="Verdana"
Font-Size="X-Small"
BorderStyle="Solid"
BorderWidth="1px"
BorderColor="#004000"
Font-Bold="True" />
<asp:Button Runat="server"
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" %>
<script runat="server">
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs)
Label1.Text = "Hello " & Textbox1.Text
End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>INETA</title>
</head>
<body>
<form id="form1" runat="server">
<asp:Textbox ID="TextBox1" Runat="server">
</asp:Textbox>
<asp:Button ID="Button1"
Runat="server"
Text="Submit Your Name"
OnClick="Button1_Click" />
<asp:Label ID="Label1" Runat="server" />
</form>
</body>
</html>
|