728x90
반응형
728x170
▶ MainPage.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="MainPage.aspx.cs" Inherits="TestProject.MainPage" %>
<%@ OutputCache Duration="60" VaryByParam="None" %>
<!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>Substitution 클래스 사용하기</title>
</head>
<body>
<form id="form" runat="server">
<div>
캐싱 적용 :
<asp:Label ID="label" runat="server" />
<hr />
캐싱 미적용 :
<asp:Substitution ID="substitution" runat="server"
MethodName="GetCurrentTime" />
</div>
</form>
</body>
</html>
728x90
▶ MainPage.aspx.cs
using System;
using System.Web;
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)
{
this.label.Text = DateTime.Now.ToLongTimeString();
}
#endregion
////////////////////////////////////////////////////////////////////////////////////////// Private
#region 현재 시간 구하기 - GetCurrentTime(context)
/// <summary>
/// 현재 시간 구하기
/// </summary>
/// <param name="context">컨텍스트</param>
/// <returns>현재 시간</returns>
private static string GetCurrentTime(HttpContext context)
{
return DateTime.Now.ToLongTimeString();
}
#endregion
}
}
728x90
반응형
그리드형(광고전용)
'C# > ASP.NET' 카테고리의 다른 글
[C#/ASP.NET] 누겟 설치 : Bootstrap (0) | 2020.09.27 |
---|---|
[C#/ASP.NET] CustomValidator 클래스 : 항목을 1개 이상 체크하기 (0) | 2020.09.27 |
[C#/ASP.NET] CustomValidator 클래스 : 약관 동의하기 (0) | 2020.09.27 |
[C#/ASP.NET] ValidationSummary 클래스 사용하기 (0) | 2020.09.27 |
[C#/ASP.NET] Localize 클래스 사용하기 (0) | 2020.09.27 |
[C#/ASP.NET] Calendar 클래스 : SelectionChanged 이벤트 사용하기 (0) | 2020.09.27 |
[C#/ASP.NET] ASP.NET 표준 컨트롤 사용하기 (0) | 2020.09.27 |
[C#/ASP.NET] DropDownList 클래스 : 동적으로 생성하기 (0) | 2020.09.27 |
[C#/ASP.NET] ImageButton 클래스 : Click 이벤트 사용하기 (0) | 2020.09.27 |
[C#/ASP.NET] ImageButton 클래스 : ImageUrl 속성 사용하기 (0) | 2020.09.27 |
댓글을 달아 주세요