QUOTE (smckenzie @ Oct 20 2008, 06:20 PM)

Anyone got an example of doing this with an i-frame?
Hey my friend.
Go to my
contact page and view the source to see the whole gorilla, but here is the snippet
CODE
<iframe
src ="http://www.thinqdesign.com/contactforms/myform.html"
width="380" frameborder="0" height="700" scrolling="no">
</iframe>
You cannot put a form on an aspx page (at least here) because it essentially amounts to a "form within a form" and if you do it, you'll see that it blows out the page. The workaround is to use an iframe, which pulls in content from another page - a hole in a page that is filled with another page. Place your form on an html page, reference it as the src for the iframe and you are good to go. You should also create the confirmation page on an html page.
Here are some issues to watch for:
>You cant put links on the confirmation html page. I used to put enticement text on mine, like: "what would you like to do next...?" type stuff. In an iframe, it would cause your entire site to load in the iframe - you'd have the site in the site. Not good.
>Playing with the size of the iframe can be tricky - make sure that the iframe is large enough to fit the content from your html page.
Good luck with it!
PS Good luck with it furlongs!