Originally posted by Michael Raymond Jr.:
yeah, framename is the ID of the DIV tag righ? does it have to be the NAME attribute? like, <div name="framename"..? I have it as <div id="framename"...which works will all my other code.
god dang, i tried every possibility known to man, or so i thought. i changed the iframe to include the NAME attribute, and now the target in FORM is working. guess i answered me own question ;-)
this only works for printing the result of the servlet to the screen instead of to a file and loading that file which is what i'm doing. hwoever, i did not want it that way originally and only did this to remedy the servlet results not appearing in the destination i wanted. thanks for the responses anyhow, at least they got my wheels turning.
conclusion:
the target="destFrame" in the FORM was not working with
<div id="framename"></div>
but did with
<div name="framename"></div>
this was with both IE and FF.