Forum Moderators: open
each of those pages can move to a payment page, so:
www.x.com/1 moves to www.x.com/pay?x=1
and www.x.com/2 moves to www.x.com/pay?x=2 and so on.
Now, our resellers requesting to hide our link from product pages and show their links instead, so when going to www.x.com/1 it should render the page and the URL in the address bar should be www.A.com/1, as for www.x.com/3 it should render and the URL be www.B.com/3 since it is for a different reseller.
thats ok with us (if we can do it :) ), but the payment page should stay the same, it should tell users that payment is safe and through our web site, specially that we are using HTTPS which is not guaranteed to be at the reseller site.
I tried frames (since i didnt find anything else) but it didnt work for the following reasons:
1- for medium security settings, it is preventing some css files and js files from loading from our site, and gives access denied javascript errors sometimes
2- the pay page is at the same link as the reseller, meaning that the submit only affected the frame the button was in.
any advices? (BTW: asp.net is used)
(i would love to get rid of frames, am i missing something?)
P.S. notice that those resellers registers dynamically at our site.
<html>
<frameset rows="*">
<frame src="http://www.x.com/1">
<noframes>
Sorry, your browser does not handle frames!
Please go to [x.com...]
</noframes>
</frameset>
</html>