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>runat 속성 : 서버 컨트롤 사용하기</title>
</head>
<body>
<form id="form" runat="server">
<div>
<h2>1. HTML 태그를 사용해 버튼 만들기</h2>
<input type="button" id="button1"
value="버튼1" />
<h2>2. runat 속성을 추가해 서버 컨트롤 버튼 만들기</h2>
<input type="button" id="button2" runat="server"
value="버튼2" />
<h2>3. ASP.NET 표준 컨트롤을 사용해 버튼 만들기</h2>
<asp:Button ID="button3" runat="server"
Text="버튼3" />
</div>
</form>
</body>
</html>
728x90
▶ 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)
{
this.button2.Value = "HTML 서버 컨트롤 - 버튼2";
this.button3.Text = "표준 컨트롤 - 버튼3";
}
#endregion
}
}
728x90
반응형
그리드형(광고전용)
'C# > ASP.NET' 카테고리의 다른 글
[C#/ASP.NET] ImageButton 클래스 : ImageUrl 속성 사용하기 (0) | 2020.09.27 |
---|---|
[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] Page 클래스 : IsPostBack 속성 사용하기 (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 |
댓글을 달아 주세요