728x90
728x170
▶ Web.config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.web>
<pages theme="Red" />
<compilation
targetFramework="4.6"
debug="true" />
<httpRuntime targetFramework="4.6" />
</system.web>
</configuration>
728x90
▶ Blue.skin
<asp:Button runat="server"
BorderWidth="1px"
BorderStyle="Dashed"
BorderColor="Blue"
BackColor="Yellow"
ForeColor="Blue" />
<asp:Button SkinID="Bold" runat="server"
BorderWidth="1px"
BorderStyle="Dashed"
BorderColor="Blue"
BackColor="Yellow"
ForeColor="Blue"
Font-Bold="True" />
300x250
▶ Blue.css
body
{
color : blue;
}
▶ Red.skin
<asp:Button runat="server"
BorderWidth="1px"
BorderStyle="Dashed"
BorderColor="Red"
BackColor="Yellow"
ForeColor="Red" />
<asp:Button SkinID="Bold" runat="server"
BorderWidth="1px"
BorderStyle="Dashed"
BorderColor="Red"
BackColor="Yellow"
ForeColor="Red"
Font-Bold="True" />
▶ Red.css
body
{
color : red;
}
▶ MainPage.aspx
<%@ Page
Language="C#"
AutoEventWireup="true"
CodeBehind="MainPage.aspx.cs"
Inherits="TestProject.MainPage" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Web.config 파일을 설정해 테마 설정하기</title>
</head>
<body>
<form id="form" runat="server">
<div>
스킨 적용 페이지
<hr />
<asp:Button ID="button1" runat="server"
Text="스킨 적용 버튼" />
<asp:Button ID="button2" runat="server"
SkinID="Bold"
Text="SkinID 적용 버튼" />
</div>
</form>
</body>
</html>
▶ MainPage.aspx.cs
using System;
using System.Web.UI;
namespace TestProject
{
/// <summary>
/// 메인 페이지
/// </summary>
public partial class MainPage : Page
{
//////////////////////////////////////////////////////////////////////////////////////////////////// Method
////////////////////////////////////////////////////////////////////////////////////////// Protected
#region 페이지 로드시 처리하기 - Page_Load(sender, e)
/// <summary>
/// 페이지 로드시 처리하기
/// </summary>
/// <param name="sender">이벤트 발생자</param>
/// <param name="e">이벤트 인자</param>
protected void Page_Load(object sender, EventArgs e)
{
}
#endregion
}
}
728x90
그리드형(광고전용)
'C# > ASP.NET' 카테고리의 다른 글
[C#/ASP.NET] TreeView 클래스 : DataSourceID 속성을 사용해 사이트맵 트리 구조 만들기 (0) | 2019.12.14 |
---|---|
[C#/ASP.NET] TreeView 클래스 사용하기 (0) | 2019.12.14 |
[C#/ASP.NET] Menu 클래스 : 메뉴 사용하기 (0) | 2019.12.14 |
[C#/ASP.NET] SiteMapPath 클래스 사용하기 (0) | 2019.12.14 |
[C#/ASP.NET] Control 클래스 : EnableTheming 속성을 사용해 테마 적용 여부 설정하기 (0) | 2019.12.14 |
[C#/ASP.NET] Control 클래스 : SkinID 속성을 사용해 테마 설정하기 (0) | 2019.12.14 |
[C#/ASP.NET] Page 클래스 : Theme 속성을 사용해 테마 설정하기 (0) | 2019.12.14 |
[C#/ASP.NET] MasterPage 클래스 : 마스터 페이지 사용하기 (0) | 2019.12.14 |
[C#/ASP.NET] UserControl 클래스 : 사용자 정의 컨트롤 만들기 (0) | 2019.12.14 |
[C#/ASP.NET] RequiredFieldValidator 클래스 : InitialValue 속성을 사용해 기본값 설정하기 (0) | 2019.12.14 |