-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsuccess.aspx
More file actions
40 lines (38 loc) · 1.2 KB
/
Copy pathsuccess.aspx
File metadata and controls
40 lines (38 loc) · 1.2 KB
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
38
39
<%@ Page Title="" Language="VB" MasterPageFile="~/Donation.master" AutoEventWireup="false" CodeFile="success.aspx.vb" Inherits="success" %>
<%@ MasterType VirtualPath ="~/Donation.master" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
<style type="text/css">
.auto-style2 {
width: 100%;
}
.auto-style3 {
width: 100px;
}
</style>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="cphMain" Runat="Server">
<table class="auto-style2">
<tr>
<td class="auto-style3">User name:</td>
<td>
<asp:Label ID="LblUser" runat="server"></asp:Label>
</td>
</tr>
<tr>
<td class="auto-style3">Password:</td>
<td>
<asp:Label ID="LblPassword" runat="server"></asp:Label>
</td>
</tr>
<tr>
<td class="auto-style3">Session ID</td>
<td>
<asp:Label ID="LblSessionId" runat="server"></asp:Label>
</td>
</tr>
<tr>
<td class="auto-style3"> </td>
<td> </td>
</tr>
</table>
</asp:Content>