728x90
728x170
▶ 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>Page 클래스 : IsPostBack 속성 사용하기</title>
</head>
<body>
<form id="form" runat="server">
<div>
<asp:Button ID="postBackButton" runat="server"
Text="다시 게시(PostBack)"
OnClick="postBackButton_Click" />
<asp:Button ID="reloadButton" runat="server"
Text="다시 로드"
OnClick="reloadButton_Click" />
</div>
</form>
</body>
</html>
728x90
▶ MainPage.aspx.cs
using System;
using System.Drawing;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
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)
{
HtmlLink htmlLink = new HtmlLink();
htmlLink.Href = "~/CSS/Test.css";
htmlLink.Attributes.Add("rel" , "stylesheet");
htmlLink.Attributes.Add("type", "text/css" );
HtmlHead htmlHead = Page.Header;
htmlHead.Controls.Add(htmlLink);
Style divStyle = new Style();
divStyle.ForeColor = Color.Blue;
divStyle.Font.Name = "나눔고딕코딩";
divStyle.Font.Size = 12;
divStyle.Font.Italic = true;
Page.Header.StyleSheet.CreateStyleRule(divStyle, null, "body, div");
Style buttonStyle = new Style();
buttonStyle.ForeColor = Color.Navy;
buttonStyle.Font.Name = "나눔고딕코딩";
buttonStyle.Font.Size = 12;
Page.Header.StyleSheet.RegisterStyle(buttonStyle, null);
this.reloadButton.CssClass = buttonStyle.RegisteredCssClass;
this.postBackButton.CssClass = buttonStyle.RegisteredCssClass;
if(!Page.IsPostBack)
{
Response.Write("[1] 폼이 처음 로드할 때에만 실행<br />");
}
if(Page.IsPostBack == false)
{
Response.Write("[2] 폼이 처음 로드할 때에만 실행<br />");
}
Response.Write("[3] 폼이 로드할 때마다 실행<br />");
}
#endregion
#region 다시 게시(PostBack) 버튼 클릭시 처리하기 - postBackButton_Click(sender, e)
/// <summary>
/// 다시 게시(PostBack) 버튼 클릭시 처리하기
/// </summary>
/// <param name="sender">이벤트 발생자</param>
/// <param name="e">이벤트 인자</param>
protected void postBackButton_Click(object sender, EventArgs e)
{
string javaScript = @"
<script>
window.alert('포스트백 됨');
</script>
";
ClientScript.RegisterClientScriptBlock(this.GetType(), "TestScript", javaScript);
}
#endregion
#region 다시 로드 버튼 클릭시 처리하기 - reloadButton_Click(sender, e)
/// <summary>
/// 다시 로드 버튼 클릭시 처리하기
/// </summary>
/// <param name="sender">이벤트 발생자</param>
/// <param name="e">이벤트 인자</param>
protected void reloadButton_Click(object sender, EventArgs e)
{
Response.Redirect("MainPage.aspx");
}
#endregion
}
}
728x90
그리드형(광고전용)
'C# > ASP.NET' 카테고리의 다른 글
[C#/ASP.NET] LinkButton 클래스 사용하기 (0) | 2020.09.27 |
---|---|
[C#/ASP.NET] Button 클래스 사용하기 (0) | 2020.09.27 |
[C#/ASP.NET] TextBox 클래스 : TextMode 속성 사용하기 (0) | 2020.09.27 |
[C#/ASP.NET] Label 컨트롤 사용하기 (0) | 2020.09.26 |
[C#/ASP.NET] runat 속성 : 서버 컨트롤 사용하기 (0) | 2020.09.26 |
[C#/ASP.NET] Page 클래스 : Application/Session 속성 사용하기 (0) | 2020.09.26 |
[C#/ASP.NET] FormView 클래스 사용하기 (0) | 2019.12.17 |
[C#/ASP.NET] DetailsView 클래스 사용하기 (0) | 2019.12.17 |
[C#/ASP.NET] DataList 클래스 사용하기 (0) | 2019.12.17 |
[C#/ASP.NET] Repeater 클래스 사용하기 (0) | 2019.12.17 |