hi all i have a problem i am submitting the form by post method and some value to be send by the post method, in my page the PayNow button when we click on it then it go to the third party payment gateway by the post method, but it not working in the umbraco because the form tag can be only on the masterpage , so where i can give the post method. Help me
Normally you can change the post method of your masterpage form, from a javascript "OnClientClick" event on your "PayNow" button (assuming this is an asp.Net Button object).
In most cases, you really don't need the form tag surrounding the entire masterpage. You usually only need to have a form runat=server tag around a custom usercontrol that you've built.
So if you have none of those, remove the form tag from the masterpage and just put it around the payment form you made.
how we can use post method in umbraco
hi all
i have a problem i am submitting the form by post method and some value to be send by the post method,
in my page the PayNow button when we click on it then it go to the third party payment gateway by the post method,
but it not working in the umbraco because the form tag can be only on the masterpage , so where i can give the post method. Help me
Hi Gaurav,
Normally you can change the post method of your masterpage form, from a javascript "OnClientClick" event on your "PayNow" button (assuming this is an asp.Net Button object).
Cheers,
Michael.
In most cases, you really don't need the form tag surrounding the entire masterpage. You usually only need to have a form runat=server tag around a custom usercontrol that you've built.
So if you have none of those, remove the form tag from the masterpage and just put it around the payment form you made.
thanks for your reply
i can got the answer from your reply
thanks again
is working on a reply...