After the user registration page, web clients will come to this page, which contains only a proceed button. But I want to skip this page and proceed to the payment page. Is there any way to do this action completely in the controller?
<form method="post" action="https://www.ccavenue.com/shopzone/cc_details.jsp">
<input type=hidden name=Merchant_Id value="<%= @Merchant_id %>">
<input type=hidden name=Amount value="<%= @Amount %>">
<input type=hidden name=Order_Id value="<%= @user_id %>">
<input type=hidden name=Redirect_Url value="<%= @redirect_url %>">
<input type=hidden name=Checksum value="<%= @checksum %>">
<input type="submit" class="Register_button" value="Proceed to payment">
</form>