FrmHelloWorld.aspx 파일의 소스 보기에는 다음과 같이 OnClick="btnClick_Click" 코드가 자동으로 추가된 것을 알 수 있다.
▼ FrmHelloWorld.aspx
<%@ Page Language=“C#” AutoEventWireup=“true” CodeBehind=“FrmHelloWorld.aspx.cs” Inherits=“DevHelloWorld.FrmHelloWorld” %> <!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></title> </head> <body> <form id=“form1” runat=“server”> <div> <asp:TextBox ID=“txtDisplay” runat=“server”></asp:TextBox> <asp:Button ID=“btnClick” runat=“server” Text=“클릭” OnClick=“btnClick_Click” /> </div> </form> </body> </html>