제목 : 31.8. 회원 가입 : (관리자 전용) 회원 정보 변경 : UserView.ascx (이벤트적용전)
글번호:
|
|
204
|
작성자:
|
|
레드플러스
|
작성일:
|
|
2007/07/02 오후 6:13:00
|
조회수:
|
|
9676
|
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="UserView.ascx.cs" Inherits="UserViewControl" %>
사용자 등록 정보 관리
<br />
* 사용자 계정:<asp:TextBox ID="txtDomainID" runat="server"></asp:TextBox><br />
* 사용자 이름:<asp:TextBox ID="txtName" runat="server"></asp:TextBox><br />
현재 암호:<asp:Label ID="lblPassword" runat="server"
Text="********"></asp:Label><br />
새 암호:<asp:TextBox ID="txtNewPassword" runat="server"></asp:TextBox><br />
암호 확인:<asp:TextBox ID="txtNewPasswordConfirm" runat="server"></asp:TextBox><br />
Email:<asp:TextBox ID="txtEmail" runat="server"></asp:TextBox><br />
설명:<asp:TextBox ID="txtDescription" runat="server"></asp:TextBox><br />
잠금 여부:
<asp:RadioButtonList ID="optBlocked" runat="server"
RepeatDirection="Horizontal" RepeatLayout="Flow">
<asp:ListItem Value="0">사용 가능</asp:ListItem>
<asp:ListItem Value="1">잠금</asp:ListItem>
</asp:RadioButtonList><br />
<asp:Button ID="btnModifyProfile" runat="server"
Text="프로필 수정" /><br />
<hr />
그룹 등록<br />
소속 그룹:
<br />
<asp:CheckBoxList ID="lstGroup" runat="server">
</asp:CheckBoxList>
<asp:Button ID="btnDeleteGroup" runat="server" Text="그룹 삭제" /><br />
그룹 추가:<br />
<asp:DropDownList ID="lstGroupList" runat="server">
</asp:DropDownList>
<asp:Button ID="btnAddGroup" runat="server" Text="그룹 추가" />
<br />
<hr />
로그인 카운트:
<asp:Label ID="lblVisitedCount" runat="server" Text=""></asp:Label><br />
마지막 로그인 일시:
<asp:Label ID="lblLastLoginDate" runat="server" Text=""></asp:Label><br />
마지막 로그인 IP주소:
<asp:Label ID="lblLastLoginIP" runat="server" Text=""></asp:Label><br />
<asp:HyperLink ID="HyperLink1" runat="server" NavigateUrl="~/UserManager.aspx">회원 리스트</asp:HyperLink>
<asp:Button ID="btnDeleteUser" runat="server"
Text="사용자 삭제"
OnClientClick="return confirm('정말로 삭제하시겠습니까?');" /><br />
<br />