I am working on a project that would require me to save a snap on the server so that I can process it to the shopping cart.
I plan to embed the following code in a third-party webpage.
<html>
<body>
<form action="http://test.xyz.com/Test.aspx" method="post">
<input type="hidden" name="BigURL" value="http://www.xyz.com/SAN1/VIEW/iD057FF2E-750E-4858-BCE0-9FC37DB6C8F1.jpg"/>
<input type="hidden" name="ReturnURL" value="http://www.abc.com/"/>
<input type="submit"/>
</form>
</html>
When the user click on the submit button, the user is taken to a shopping cart with the picture. This requires that I save the picture on my server and then process it. Could anyone please tell me how to approach this problem as I am new to VB.NET/ASP.NET and need to have this this quickly.
It should be something like paypal. Say, a user clicks on the paypal icon, it takes the user to the paypal payment site. I want to do something similar, just that I need to code something like what paypal does and not just calling the paypal service. The user could come from any third-party site.
I plan to embed the following code in a third-party webpage.
<html>
<body>
<form action="http://test.xyz.com/Test.aspx" method="post">
<input type="hidden" name="BigURL" value="http://www.xyz.com/SAN1/VIEW/iD057FF2E-750E-4858-BCE0-9FC37DB6C8F1.jpg"/>
<input type="hidden" name="ReturnURL" value="http://www.abc.com/"/>
<input type="submit"/>
</form>
</html>
When the user click on the submit button, the user is taken to a shopping cart with the picture. This requires that I save the picture on my server and then process it. Could anyone please tell me how to approach this problem as I am new to VB.NET/ASP.NET and need to have this this quickly.
It should be something like paypal. Say, a user clicks on the paypal icon, it takes the user to the paypal payment site. I want to do something similar, just that I need to code something like what paypal does and not just calling the paypal service. The user could come from any third-party site.