-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathCallback.aspx
More file actions
25 lines (23 loc) · 864 Bytes
/
Callback.aspx
File metadata and controls
25 lines (23 loc) · 864 Bytes
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
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Callback.aspx.cs" Inherits="Callback" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="css/bootstrap.min.css" rel="stylesheet" />
</head>
<body>
<form id="form1" runat="server">
<div class="container">
<div class="jumbotron">
<h1 runat="server" id="h1Message"></h1>
<p runat="server" id="pTxnId"></p>
<p>Click here to go to home</p>
<p><a class="btn btn-primary btn-lg" href="Default.aspx" role="button">Home</a></p>
</div>
</div>
</form>
</body>
</html>