1 <%@ Page Language="C#" MasterPageFile="~/LayoutExamples/MasterPage/Site1.Master" AutoEventWireup="true" CodeBehind="Child1a.aspx.cs" Inherits="ZeeControls2Demo.LayoutExamples.MasterPage.Child1a" Title="Master Page Support" Theme="Default" %>
2
3 <%@ Register Assembly="ZettaCube.ZeeControls" Namespace="ZettaCube.ZeeControls" TagPrefix="cc1" %>
4
5 <asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
6
7 <cc1:WebSplitterContainer ID="WebSplitterContainer1" runat="server" Height="437px" Width="622px" Orientation="Horizontal">
8 <Panels>
9 <cc1:WebSplitterPanel runat="server">
10 <Content>
11 Splitter panel in Child1a.aspx
12 </Content>
13 </cc1:WebSplitterPanel>
14 <cc1:WebSplitterPanel runat="server">
15 </cc1:WebSplitterPanel>
16 </Panels>
17 </cc1:WebSplitterContainer>
18
19 </asp:Content>
20
1 using System;
2 using System.Data;
3 using System.Configuration;
4 using System.Collections;
5 using System.Web;
6 using System.Web.Security;
7 using System.Web.UI;
8 using System.Web.UI.WebControls;
9 using System.Web.UI.WebControls.WebParts;
10 using System.Web.UI.HtmlControls;
11
12 namespace ZeeControls2Demo.LayoutExamples.MasterPage
13 {
14 public partial class Child1a : System.Web.UI.Page
15 {
16 protected void Page_Load(object sender, EventArgs e)
17 {
18
19 }
20 }
21 }
22
1 body
2 {
3 font-family: Tahoma, Geneva;
4 font-size: 10pt;
5 }
6
7 .ZCWDMainContent, .ZCWDPanelContent
8 {
9 padding: 3px;
10 }
11
12 .ZCWDPanelTitleBar
13 {
14 padding-left: 3px;
15 }
16
17 .ZCWSPanel
18 {
19 padding: 3px;
20 }
21
22 .title
23 {
24 display: block;
25 font-weight:bold;
26 line-height: 24px;
27 }
28
29 .indent
30 {
31 padding: 10px;
32 padding-left: 30px;
33 }
34
35 .blah
36 {
37 color: Gray;
38 }
39
40 .tableRowHeader
41 {
42 color: #666666;
43 }
44
45 .tableColumnHeader
46 {
47 color: #666666;
48 }
49
1 <%--
2 Default skin template. The following skins are provided as examples only.
3
4 1. Named control skin. The SkinId should be uniquely defined because
5 duplicate SkinId's per control type are not allowed in the same theme.
6
7 <asp:GridView runat="server" SkinId="gridviewSkin" BackColor="White" >
8 <AlternatingRowStyle BackColor="Blue" />
9 </asp:GridView>
10
11 2. Default skin. The SkinId is not defined. Only one default
12 control skin per control type is allowed in the same theme.
13
14 <asp:Image runat="server" ImageUrl="~/images/image1.jpg" />
15 --%>