Than you interpro! Can you post a sample script to do that in an iframe?
Thank you!
The iframe approach is easy to do. It will show the contents of the affiliate sales page, while staying on your site. You can also place other info before or after the iframe, such as pre-sell stuff or tell about any bonuses you offer.
Here's the basic code -
<iframe src="http://affiliatelink.com" width=800 height=1200 frameborder=0></iframe>
Of course, you'll need to set the src to the actual page you want to show and you can set the height and width to your own values. You'll want to set the width to a value that shows the entire with of the affiliate page, oterwise you'll have a horizontal scrollbar at the bottom of the display. People generally don't like to scroll horizontally to see everything.
Also, you can set the height value to whatever you like, but if you set it too small to show the entire affiliate page, you'll have vertical scrollbars. Having vertical scrollbars isn't too bad, as most web pages require scrolling anyhow. If you set the height to a large enough number, you can eliminate the scrollbars on the iframe, but your page will be long so you'll still have the vertical scrollbar on the main page.
If you want to experiment with the iframe idea, here's the complete code for a simple page. Just copy & past into a Notepad file and rename it test.html -
<html>
<head>
<title>IFRAME TEST</title>
</head>
<body bgcolor=000088>
<iframe src="http://yahoo.com" width=800 height=1200 frameborder=0></iframe>
</body>
</html>
Open the file with your browser, then you can play around with the values to see how things work.