following code exist in a page resides in mainframe
when call locationitempreview by using target="_self" page displays successfully within the frame
but if i want to display this page in new window it gives me
following error
The page cannot be displayed
There is a problem with the page you are trying to reach and it cannot be displayed.
<cfform format="flash" width="550" action="locationitemprevie
w.cfm" method="post" timeout="60" name="form2" height="290" skin="haloorange" style="backgroundAlpha: 0;" wmode="transparent" target="new">
<cfformgroup type="panel" height="280" style="indicatorGap:0; verticalGap:5; headerColors: ##238AB6, ##238AB6;" label="Product Sales">
<cfformgroup type="vertical">
<cfinput type="datefield" name="startdate" width="100" label="From Date" required="yes" message="From Date is Required">
<cfinput type="datefield" name="enddate" width="100" label="To Date" required="yes" message="To Date is Required">
<cfquery name = "getlocations" datasource="Shrimpy">
select convert(numeric,'5000') locationid,'Select All' locationname
union
select locationid,locationname
from location
order by locationname
</cfquery>
<cfselect
name = "locationlov"
size = "1"
required = "Yes"
query = "getlocations"
value ="locationid"
queryPosition="below"
display="locationname" label="Location" >
</cfselect>
<cfselect name="output" width="150" label="Output">
<option value="pdf">Acrobat Reader</option>
<option value="flashpaper">Flash Paper</option>
</cfselect>
</cfformgroup>
<cfformgroup type="Horizontal" style="border:inset">
<cfinput type="submit" name="submitit" value="View" width="50">
<cfinput type="Reset" name="resetit" value="Reset" width="50">
</cfformgroup>
</cfformgroup>
</cfform>
Start Free Trial