FrmLabel (레이블)
.NET프로그래밍/ASP.NET 3.5 SP1 2009. 10. 6. 10:47 |
==> [FrmLabel.aspx] 소스 및 디자인
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="FrmLabel.aspx.cs" Inherits="FrmLabel" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
1~100까지 짝수의 합 :
<asp:Label ID="Label1" runat="server" Text="Label"
ForeColor="Red" BackColor="Yellow"
BorderColor="Blue" BorderStyle="Solid" BorderWidth="1px"></asp:Label>
<br />
올 크리스마스가 며칠 남았는지?
<asp:Label ID="Label2" runat="server" Text="Label"></asp:Label>
</div>
</form>
</body>
</html>
-------------------------------------------------------------------------------------
==> [FrmLabel.aspx.cs] 소스
using System;
public partial class FrmLabel : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
DisplayEven();
DisplayXmas();
}
private void DisplayXmas()
{
this.Label2.Text = "30일 남았다.";
}
private void DisplayEven()
{
Label1.Text = "<b><s>2550</s></b>";
}
}
-------------------------------------------------------------------------------------
[실행결과]
'.NET프로그래밍 > ASP.NET 3.5 SP1' 카테고리의 다른 글
FrmButton (버튼) (0) | 2009.10.06 |
---|---|
FrmTextBox (텍스트박스) (0) | 2009.10.06 |
FrmLabelTextBoxButton(레이블 / 텍스트박스 / 버튼) (0) | 2009.10.06 |
WebStandardControl(표준 컨트롤) 시작 (0) | 2009.10.06 |
FrmPageLoad (0) | 2009.10.05 |