how do we reference an asp page found in a frame thru the sumit command...??
I'm in choice.asp... I click submit to go to a submit.asp but the submit.asp is found in a frame!!
Printable View
how do we reference an asp page found in a frame thru the sumit command...??
I'm in choice.asp... I click submit to go to a submit.asp but the submit.asp is found in a frame!!
Use the "target" prop. of the form tag
example:
<form name = "" method = "post" action = "submit.asp" target = "link">
Did I mention the frame was in another page and not in choice.asp?