==> FrmHello.aspx 소스 및 디자인


<%@ Page Language="C#" AutoEventWireup="true" CodeFile="FrmHello.aspx.cs" Inherits="FrmHello" %>

 

<!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>

   

        UI / 디자인 : aspx에서</div>

    </form>

</body>

</html>

 








-------------------------------------------------------------------------------------




==> FrmHello.aspx.cs 소스



using System;

using System.Collections.Generic;

using System.Linq;

using System.Web;

using System.Web.UI;

using System.Web.UI.WebControls;

 

public partial class FrmHello : System.Web.UI.Page

{

    protected void Page_Load(object sender, EventArgs e)

    {

        // 기능은 aspx.cs에서, , 코드비하인드 페이지에서...

        Response.Write("반갑습니다...");

    }

}

 



-------------------------------------------------------------------------------------



[실행결과]

Posted by holland14
: