se non ho capito male
e quindi hai il submit della form nella pagina principale e no nell'iframe potresti fare così:

<iframe id="ListSol" name="iFrame" src="link.html">

if(document.all){
self.iFrame.document.form.submit();
}else if(document.getElementById){
document.getElementById('ListSol').contentDocument .form.submit();
}