제목 : 31.6. 회원 가입 : 회원 정보 수정 및 탈퇴 페이지 : UserInfor.ascx
    
    
        
            
                | 글번호: |  | 197 | 
            
                | 작성자: |  | 레드플러스 | 
            
                | 작성일: |  | 2007/06/25 오후 6:25:00 | 
            
            
                | 조회수: |  | 8250 | 
            
        
     
 
    
	
	
    
	<%@ Control Language="C#" AutoEventWireup="true" CodeFile="UserInfor.ascx.cs" Inherits="UserInforControl" %>
<div>
<br />
    아이디:
<asp:Label ID="lblUserID" runat="server" Text=""></asp:Label>
    <br />이름:
    <asp:Label ID="lblUserName" runat="server" Text=""></asp:Label>
    <br />
<br />암호 변경<br />이전 암호:
<asp:TextBox ID="txtPassword" runat="server"></asp:TextBox>
<br />새   암호:<asp:TextBox ID="txtPasswordNew" runat="server"></asp:TextBox>
<br />암호확인:<asp:TextBox ID="txtPasswordConfirm" runat="server"></asp:TextBox>
<br />
<asp:Button ID="btnChangePassword" runat="server" Text="암호변경" 
    onclick="btnChangePassword_Click" />
<br />
<br />프로필 정보 수정<br />이메일:<asp:TextBox ID="txtEmail" runat="server"></asp:TextBox>
<br />소개:<asp:TextBox ID="txtDescription" runat="server"></asp:TextBox>
<br />
<asp:Button ID="btnChangeProfile" runat="server" Text="프로필 수정" 
    onclick="btnChangeProfile_Click" />
<br />
<br />회원 탈퇴<br />
<asp:Button ID="btnDelete" runat="server" Text="회원 탈퇴" 
  onclick="btnDelete_Click" 
  OnClientClick="return confirm('회원에서 탈퇴하시겠습니까?');" />
<br />
<br />
<br />
<br />
</div>