13 컨트롤을 웹 폼에 등록하는 방식은 소스 보기에서도 가능하다. 소스 보기의 특정한 태그 영역에 도구 상자에서 컨트롤을 드래그 앤 드롭으로 떨어뜨려 놓으면 컨트롤이 등록된다. 여기까지 작업한 내용을 소스 보기에서 보면 다음과 같다.
▼ 현재까지의 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=“클릭”/> </div> </form> </body> </html>