如何在 Realex HPP post 中显示付款金额?
How to show the payment amount in the Realex HPP post?
我希望最终用户在输入信用卡详细信息时知道他们支付的金额,这似乎只能通过向 Realex 提供带有 <hpp:body />
嵌入标签的模板文件来实现。我宁愿不必参与其中,那么有没有办法让标准的 Realex 表格显示收费金额?
我的申请在 ASP VB.net。我构造 post 的 class 是:
Public Class RemotePost
Private Inputs As System.Collections.Specialized.NameValueCollection = New System.Collections.Specialized.NameValueCollection()
Public Url As String = ""
Public Method As String = "post"
Public FormName As String = "Mypost"
Public Sub Add(name As String, value As String)
Inputs.Add(name, value)
End Sub
Public Sub Post()
System.Web.HttpContext.Current.Response.Clear()
System.Web.HttpContext.Current.Response.Write("<html><head>")
System.Web.HttpContext.Current.Response.Write(String.Format("</head><body onload='document.{0}.submit()'>", FormName))
System.Web.HttpContext.Current.Response.Write(String.Format("<form name='{0}' method='{1}' action='{2}' >", FormName, Method, Url))
For i = 0 To Inputs.Keys.Count - 1
HttpContext.Current.Response.Write(String.Format("<input name='{0}' type='hidden' value='{1}'>", Inputs.Keys(i), Inputs(Inputs.Keys(i))))
Next i
System.Web.HttpContext.Current.Response.Write("</form>")
System.Web.HttpContext.Current.Response.Write("</body></html>")
System.Web.HttpContext.Current.Response.End()
End Sub
End Class
感谢您的提问。您不需要模板来向持卡人显示金额。这可以在我们的报告和配置工具 - RealControl 中实现。
从管理 select 客户端设置 下的导航菜单。在此屏幕上,您会看到一个名为 重定向文本配置 的部分。从下拉菜单中选择您要为其实施此操作的帐户。
在 Info Text 框中,您将看到用于配置要在 HPP 上显示的文本的选项。单击 i 符号查看您可以使用的各种交易变量,其中之一是 <#TOTAL#>,您可以使用它向持卡人显示金额。
最佳,
肖恩
Realex 支付
我希望最终用户在输入信用卡详细信息时知道他们支付的金额,这似乎只能通过向 Realex 提供带有 <hpp:body />
嵌入标签的模板文件来实现。我宁愿不必参与其中,那么有没有办法让标准的 Realex 表格显示收费金额?
我的申请在 ASP VB.net。我构造 post 的 class 是:
Public Class RemotePost
Private Inputs As System.Collections.Specialized.NameValueCollection = New System.Collections.Specialized.NameValueCollection()
Public Url As String = ""
Public Method As String = "post"
Public FormName As String = "Mypost"
Public Sub Add(name As String, value As String)
Inputs.Add(name, value)
End Sub
Public Sub Post()
System.Web.HttpContext.Current.Response.Clear()
System.Web.HttpContext.Current.Response.Write("<html><head>")
System.Web.HttpContext.Current.Response.Write(String.Format("</head><body onload='document.{0}.submit()'>", FormName))
System.Web.HttpContext.Current.Response.Write(String.Format("<form name='{0}' method='{1}' action='{2}' >", FormName, Method, Url))
For i = 0 To Inputs.Keys.Count - 1
HttpContext.Current.Response.Write(String.Format("<input name='{0}' type='hidden' value='{1}'>", Inputs.Keys(i), Inputs(Inputs.Keys(i))))
Next i
System.Web.HttpContext.Current.Response.Write("</form>")
System.Web.HttpContext.Current.Response.Write("</body></html>")
System.Web.HttpContext.Current.Response.End()
End Sub
End Class
感谢您的提问。您不需要模板来向持卡人显示金额。这可以在我们的报告和配置工具 - RealControl 中实现。
从管理 select 客户端设置 下的导航菜单。在此屏幕上,您会看到一个名为 重定向文本配置 的部分。从下拉菜单中选择您要为其实施此操作的帐户。
在 Info Text 框中,您将看到用于配置要在 HPP 上显示的文本的选项。单击 i 符号查看您可以使用的各种交易变量,其中之一是 <#TOTAL#>,您可以使用它向持卡人显示金额。
最佳,
肖恩
Realex 支付