-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDefault.aspx
executable file
·78 lines (67 loc) · 2.51 KB
/
Default.aspx
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="TestBlockScore.Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<link href="StyleSheet1.css" rel="stylesheet" type="text/css" />
</head>
<body>
<form id="form1" runat="server">
<center>
<div>
Sample integrations to the Blockscore API.
<br />
<br />Click one of the buttons below to run a sample verification:
<br />
<asp:Button ID=btnverifyus runat=server Text="Verify US"
onclick="btnverifyus_Click" />
<asp:Button ID=btnverifyinternational runat=server Text="Verify International"
onclick="btnverifyinternational_Click"/>
<br />
<br />
<asp:Panel ID=pnlverifications runat=server Visible=false>
API Call /verifications
<table style="width:800px; vertical-align:top; border:1px solid gray;">
<tr>
<td>/verifications Request:</td>
<td>/verifications Response:</td>
</tr>
<tr valign=top>
<td><asp:Label ID=lblverificationrequest runat=server></asp:Label></td>
<td><asp:Label ID=lblverificationresponse runat=server></asp:Label></td>
</tr>
</table>
</asp:Panel>
<asp:Panel id=pnlquestions runat=server Visible=false>
<br />
<br />
API Call /questions
<table style="width:800px; vertical-align:top; border:1px solid gray;">
<tr>
<td>/questions Request:</td>
<td>/questions Response:</td>
</tr>
<tr valign=top>
<td><asp:Label ID=lblquestionrequest runat=server></asp:Label></td>
<td><asp:Label ID=lblquestionresponse runat=server></asp:Label></td>
</tr>
</table>
<br />
<br />
API Call /questions/score
<table style="width:800px; vertical-align:top; border:1px solid gray;">
<tr>
<td>/questions/score Request:</td>
<td>/questions/score Response:</td>
</tr>
<tr valign=top>
<td><asp:Label ID=lblquestionscorerequest runat=server></asp:Label></td>
<td><asp:Label ID=lblquestionscoreresponse runat=server></asp:Label></td>
</tr>
</table>
</asp:Panel>
</div>
</center>
</form>
</body>
</html>