2025-03-28 09:49:56 +08:00

141 lines
5.3 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!--
/*
* Project:
*
* Description:
* 商户接口范例。
*
* Modify Information:
* Author Date Description
* ============ ========== =======================================
* abchina 2018/01/30 V3.0.0
*
*/
-->
<%@ Page Language="C#" %>
<!DOCTYPE html>
<script runat="server">
protected void btnButton_Click(object sender, EventArgs e)
{
lblMessage.Text = "";
lblMessage.ForeColor = System.Drawing.Color.Red;
//1、生成商户交易查询请求对象
com.abc.trustpay.client.ebus.SubMerchantSubFile tRequest = new com.abc.trustpay.client.ebus.SubMerchantSubFile();
tRequest.dicRequest["SubMerNo"] = txtSubMerId.Text; //设定交易类型(必要信息)
//string name = fileName.Text; //设定交易类型(必要信息)
//string filestring = tRequest.ZipFileToBase64String(name);
tRequest.dicRequest["SubMerCertFile"] = SubMerCertFile.Text;
tRequest.dicRequest["Flag"] = flag.Text;
//2、传送商户交易查询请求并取得交易查询结果
tRequest.postJSONRequest();
//3、判断商户交易查询结果状态进行后续操作
StringBuilder strMessage = new StringBuilder("");
string ReturnCode = JSON.GetKeyValue("ReturnCode");
string ErrorMessage = JSON.GetKeyValue("ErrorMessage");
string MerchantName = JSON.GetKeyValue("MerchantName");
string SubMerId = JSON.GetKeyValue("SubMerId");
string SubMerchantAccNo = JSON.GetKeyValue("SubMerchantAccNo");
string Balance = JSON.GetKeyValue("Balance");
if (ReturnCode.Equals("0000"))
{
strMessage.Append("ReturnCode = [" + ReturnCode + "]<br/>");
strMessage.Append("ErrorMessage = [" + ErrorMessage + "]<br/>");
//4、获取结果信息
strMessage.Append("MerchantName = [" + MerchantName + "]<br/>"); //主商户名称
strMessage.Append("SubMerId = [" + SubMerId + "]<br/>"); //二级商户号
strMessage.Append("SubMerchantAccNo = [" + SubMerchantAccNo + "]<br/>"); //二级商户账号
strMessage.Append("Balance = [" + Balance + "]<br/>"); //二级商户余额
}
else
{
//6、商户订单查询失败
strMessage.Append("ReturnCode = [" + ReturnCode + "]<br/>");
strMessage.Append("ErrorMessage = [" + ErrorMessage + "]<br/>");
lblMessage.ForeColor = System.Drawing.Color.Red;
}
lblMessage.Text = strMessage.ToString();
}
protected void Page_Load(object sender, EventArgs e)
{
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<meta http-equiv ="X-UA-Compatible" content ="IE=edge;charset=utf-8"/>
<title>农行网上支付平台-商户接口范例-二级商户余额查询</title>
</head>
<script>
// 上传csv格式的文件
function uploadfile() {
var reads = new FileReader();
file = document.getElementById('file').files[0];
reads.readAsDataURL(file);
console.log(reads);
reads.onload = function (e) {
console.log(e)
// document.getElementById('result').innerText = this.result
document.getElementsByName('SubMerCertFile')[0].value = e.target.result.substring(e.target.result.indexOf(',') + 1)
};
reads.onloadstart = function (e) {
console.log('onloadstart ---> ', e)
}
reads.onloadend = function (e) {
console.log('onloadend ---> ', e)
}
reads.onprogress = function (e) {
console.log('onprogress ---> ', e)
}
}
</script>
<body style="font-size: 14px;">
<center>
二级商户上传资料</center>
<form id="form1" runat="server">
<asp:Label ID="lblMessage" runat="server" Text=""></asp:Label>
<br />
<table>
<tr>
<td>二级商户名称
</td>
<td>
<asp:TextBox runat="server" ID='txtSubMerId' Text='tj0816' /> *必输 </td>
</tr>
<tr>
<td>文件路径+文件名
</td>
<td>
<input type="file" id="file" accept=".zip" onchange="uploadfile();" />
<%-- <asp:TextBox runat="server" ID='fileName' Text='D:\bigzip.zip' /> --%>*必输(zip包大小必须低于1.5M) </td>
</tr>
<tr>
<td>标志位
</td>
<td>
<asp:TextBox runat="server" ID='flag' Text='1' /> *必输(取值1、2、3和9) </td>
<td><asp:TextBox runat="server" ID='SubMerCertFile' value='' style="display:none"/></td>
</tr>
<tr>
<td colspan="2">
<tr>
<td colspan="2">
<asp:Button ID="btnButton" runat="server" Text="提交页面内容" OnClick="btnButton_Click" />
<a href='Merchant.html'>回商户首页</a>
</td>
</tr>
</table>
</form>
</body>
</html>