52 lines
1.3 KiB
Plaintext
52 lines
1.3 KiB
Plaintext
<!--
|
||
/*
|
||
* Project:
|
||
*
|
||
* Description:
|
||
* 商户接口范例。
|
||
*
|
||
* Modify Information:
|
||
* Author Date Description
|
||
* ============ ========== =======================================
|
||
* abc 2014/05/13 V3.0.0
|
||
*
|
||
*/
|
||
-->
|
||
<%@ Page Language="C#" %>
|
||
|
||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||
|
||
|
||
<script runat="server">
|
||
|
||
protected void Page_Load(object sender, EventArgs e)
|
||
{
|
||
//1、取得参数,并利用此参数值作后续处理
|
||
string tOrderNo = Request["OrderNo"];
|
||
|
||
//
|
||
//后续处理
|
||
//...
|
||
//...
|
||
//
|
||
lblMessage.Text = "接收通知失败,交易编号为:" + tOrderNo;
|
||
}
|
||
</script>
|
||
|
||
<html xmlns="http://www.w3.org/1999/xhtml" >
|
||
<head runat="server">
|
||
<title>农行网上支付平台-商户接口范例-通知服务器通知支付失败结果接收</title>
|
||
</head>
|
||
<body>
|
||
<form id="form1" runat="server">
|
||
<div>
|
||
<center>
|
||
支付结果<br/>
|
||
<asp:Label ID="lblMessage" runat="server" Text="Label"></asp:Label>
|
||
<br />
|
||
<a href='Merchant.html'>回商户首页</a></center>
|
||
</div>
|
||
</form>
|
||
</body>
|
||
</html>
|