-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDeleteUserAccount.aspx
21 lines (17 loc) · 1015 Bytes
/
DeleteUserAccount.aspx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<%@ Page Title="" Language="C#" MasterPageFile="~/Site1.Master" AutoEventWireup="true" CodeBehind="DeleteUserAccount.aspx.cs" Inherits="DBProject.DeleteUserAccount" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
<link rel="stylesheet" href="MyCssFile.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="mbutton.css" type="text/css" charset="utf-8" />
<br />
<br /> <h2>Delete Account?</h2>
<p> <button type="button" class="button" onclick="location.href='UserAccount.aspx'"><span >go back</span></button></p>
<p>
<asp:Button ID="Button1" CssClass="buttonCSS" runat="server" Text="Yes" OnClick="DelAcc" />
<asp:Button ID="Button2" CssClass="buttonCSS" runat="server" Text="No" OnClick="NotDelAcc" />
<br />
<br />
<asp:Label ID="Status" runat="server"></asp:Label>
</p>
</asp:Content>