더북(TheBook)

12. FrmResponseRedirect.aspx의 소스 보기로 이동한 후 다음과 같이 소스를 작성한다. 소스 보기에서 입력 후 디자인 보기에서 어떻게 보여지는지 확인한다. ImageButton을 사용한 부분은 최신 특정 브라우저에서는 표시되지 않을 수도 있다. 그리고 13번에서 작성할 이벤트 처리기까지 완성되어야 현재 페이지가 실행된다.

▼  FrmResponseRedirect.aspx

<%@ Page Language=“C#” AutoEventWireup=“true”
  CodeBehind=“FrmResponseRedirect.aspx.cs” Inherits=“DevASPNET.
FrmResponseRedirect” %>

<!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>Response 개체</title>
</head>
<body>
  <form id=“form1” runat=“server”>
      <div>
          <asp:Button ID=“btnDotNetKorea”
              runat=“server” Text=“닷넷코리아”
              OnClick=“btnDotNetKorea_Click” />
          <br />
          <asp:LinkButton ID=“btnDevLec” runat=“server”
              OnClick=“btnDevLec_Click”>데브렉</asp:LinkButton>
          <br />
          <asp:ImageButton ID=“btnVisualAcademy”
              runat=“server”
              AlternateText=“비주얼아카데미”
              ToolTip=“하와소” OnClick=“btnVisualAcademy_Click”
              Style=“height: 16px” /><br />
      </div>
  </form>
</body>
</html>

신간 소식 구독하기
뉴스레터에 가입하시고 이메일로 신간 소식을 받아 보세요.