function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
muralikrishna.sfdcmuralikrishna.sfdc 

how to get responce in payment gateway by submiting HTML page

please help me............

 

============================

when i submit this page it is redirecting and i am able to get rayment page from billdesk also.

 

after payment process billdesk will send responce.

 

 

my question is, how to get that responce ?

 

 

======================================

<apex:page Controller="paymentGateWay" sidebar="false" showHeader="false" >
 
 
 <html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Payment Gateway</title>
</head>
<body>
   

    <form name="frm" action="https://www.billdesk.com/pgidsk/pgmerc/baymentoption.jsp"
    method="post">


    <input type='hidden' name='txtCustomerID' value='{!txtCustomerID}'/><br></br>
    <input type='hidden' name='txtTxnAmount' value='{!txtTxnAmount}'/><br></br>
    <input type='hidden' name='txtAdditionalInfo1' value='55587'/>
    <input type='hidden' name='txtAdditionalInfo2' value='Bajaj Customer'/>
    <input type='hidden' name='txtAdditionalInfo3' value='T'/>
  
    <input type='hidden' name='RU' value='https://bsandboxpsbl--sanboxpsbl.cs5.my.salesforce.com' />
   
    </form>
    
</body>
<script type="text/javascript">
    document.forms["frm"].submit();
</script>
</html>
</apex:page>

===============================================