Forum Moderators: open
<input type=submit name=Locate Value="Search">
The project is on hold 'til I get this figured out - thanks for all the help.
Change your <input type="submit"> to a <input type="button">. I would then use the button to pass the parameters of your form to the iFrame, something like this :
<input type="button" onClick="document.frameName.location.href('results.asp?searchOption1="+txtLabel1.value+"&searchOption2="+txtLabel2.value+"');">
Another way would be to make a form within your Iframe page, add a bunch of hidden fields, then onClick of your button, insert the data into your hidden fields and POST that form.
<script>
document.frameName.form.hiddenField1.value = form.txtLabel1.value;
document.frameName.form.hiddenField2.value = form.txtLabel2.value;
document.frameName.form.submit();
</script>
The syntax of these examples might be a little off, but at least it points you in the right direction.