I have to post five field values to an external url to process payment from an asp.net application. The external company gave me sample code in html. The problem is that I can’t use html as I have to populate some of these values in the codebehind and use aspx pages. Since my website has a master page I can’t use the line
<FORM name=thisForm action="https://abc.com/xyz/default.asp" method=post>
Please let me know how to post these values using asp.net from code behind.
Thanks
Since my website has a master page I can't use the lineThis isn’t true. You can set these properties in code-behind of any of your aspx pages, like this for instance: