I have some Dreamweaver generated code that creates a popup. (see below). This code has worked fine until we tested it on IE 5.5. With IE 5.5, the tamplate in the action of the form is not receiving the form variables.
Does anyone know of a more stable why I can acheive what I am trying to acheive with the code below. My only other option is to not use a popup, but then the window that the form results are displayed in will have a navbar etc.
Any suggestions greatly appreciated.
Jason Morris
***THE CODE***
<script language="JavaScript">
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
</script>
<form name="reportform" method="post" action="furs/act/act_users_itemised_calls.cfm" target="reportwindow">
...some code...
<input type="submit" name="submit" value="Display report" onClick="MM_openBrWindow('filename.cfm','reportwindow','scrollbars=yes,width=800,height=600')">
</form>
Does anyone know of a more stable why I can acheive what I am trying to acheive with the code below. My only other option is to not use a popup, but then the window that the form results are displayed in will have a navbar etc.
Any suggestions greatly appreciated.
Jason Morris
***THE CODE***
<script language="JavaScript">
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
</script>
<form name="reportform" method="post" action="furs/act/act_users_itemised_calls.cfm" target="reportwindow">
...some code...
<input type="submit" name="submit" value="Display report" onClick="MM_openBrWindow('filename.cfm','reportwindow','scrollbars=yes,width=800,height=600')">
</form>