Subversion Repository Public Repository

ChrisCompleteCodeTrunk

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<%@ Page Title="Action Tire CRM" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true"
    CodeBehind="AdminDeleteUser.aspx.cs" Inherits="CRMPortal.AdminDeleteUser" %>

<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
    <asp:Label ID="lblError" runat="server" ForeColor="Red" Text="Error" 
        Visible="False"></asp:Label>
    <style>
            td { font-size: 1.5em; }
    </style>
    <br />
    <div>
        
    <table class="ListTable">
        <tr>
            <th class="ListHeader">
                <asp:Label ID="lblName" runat="server" Text="Label"></asp:Label>
            </th>
        </tr>
    <tr>
    <td class="ListCell">
        Are you sure that you want to delete this user?<br />
        All associated prospects and customers will be unlocked.<br />
        <strong>This action is irreversible.</strong>
    </td>
    </tr>
    <tr>
    <td>
        <asp:Button ID="btnDelete" class="aspButton" runat="server" Text="DeleteUser"
            style="text-align: center;" onclick="btnDelete_Click" />
        <asp:Button ID="btnCancel" class="aspButton" runat="server" Text="Cancel"
            style="text-align: center;" onclick="btnCancel_Click" />
    </td>
    </tr>

    </table>
    </div>
</asp:Content>

Commits for ChrisCompleteCodeTrunk/ATCCRMPortal/CRMPortal/AdminDeleteUser.aspx

Diff revisions: vs.
Revision Author Commited Message
1 BBDSCHRIS picture BBDSCHRIS Wed 22 Aug, 2018 20:08:03 +0000