1 <%@ Page Language="C#" AutoEventWireup="true"
2 CodeFile="Modify.aspx.cs" Inherits="Basic_Modify" %>
3
4 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
5 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
6
7 <html xmlns="http://www.w3.org/1999/xhtml" >
8 <head runat="server">
9 <title>제목 없음</title>
10 </head>
11 <body>
12 <form id="form1" runat="server">
13 <div>
14 상세 보기<br />
15 <br />
16 번호:<asp:Label ID="lblNum" runat="server" Text=""></asp:Label><br />
17 이름:<asp:TextBox ID="txtName" runat="server"></asp:TextBox><br />
18 이메일:<asp:TextBox ID="txtEmail" runat="server"></asp:TextBox><br />
19 홈페이지:<asp:TextBox ID="txtHomepage" runat="server"></asp:TextBox><br />
20 제목:<asp:TextBox ID="txtTitle" runat="server"></asp:TextBox><br />
21 내용:<asp:TextBox ID="txtContent" runat="server"
22 TextMode="MultiLine" Rows="5"></asp:TextBox><br />
23 <br />
24 암호:<asp:TextBox ID="txtPassword" runat="server"
25 TextMode="Password"></asp:TextBox><br />
26 인코딩:<asp:RadioButtonList ID="lstEncoding" runat="server"
27 RepeatDirection="Horizontal" RepeatLayout="Flow">
28 <asp:ListItem Value="Text">Text</asp:ListItem>
29 <asp:ListItem Value="HTML">HTML</asp:ListItem>
30 <asp:ListItem Value="Mixed">Mixed</asp:ListItem>
31 </asp:RadioButtonList><br />
32 <br />
33 <asp:Button ID="btnModify" runat="server" Text="수정"
34 OnClick="btnModify_Click" />
35 <asp:Button ID="btnCancel" runat="server" Text="취소"
36 OnClick="btnCancel_Click" /><br /><br />
37 <asp:Label ID="lblError" runat="server" ForeColor="Red"></asp:Label></div>
38 </form>
39 </body>
40 </html>
41