CFDIV loading multiple times
I have a fairly simple page with about 4 cfselect (drop downs) that bind information to a cfdiv. For some reason, after selecting an option from the drop down the CFDIV loads (which is the expected behavior), but then it reloads randomly 3 times.
<cfif IsDefined("FormSubmit") and FormSubmit eq "true">
<cfset formsubmitted = "true">
</cfif>
.....
<cfselect name="preparerID" bind="cfc:#conturl#/getMiscData.getPreparerID()"
bindonload="true" selected="#form.preparerID#" >
</cfselect><br><br>
<b>Appropriation : </b>
<cfif Isdefined("url.selected_ic")>
<cfset form.selected_ic = #url.selected_ic#>
</cfif>
<cfselect name="selected_ic" bind="cfc:#conturl#/getMiscData.getICs()"
bindonload="true" selected="#form.selected_ic#" >
</cfselect><br><br>
<b>Symbol : </b>
<cfif Isdefined("url.symbol")>
<cfset form.symbol = #url.symbol#>
</cfif>
<cfselect name="symbol" bind="cfc:#conturl#/getMiscData.getsymbol({selected_ic})"
bindonload="true" selected="#form.symbol#" >
</cfselect><br><br>
<cfinput type=submit name="view" class="button" value="View Report" onClick="javascript:funcsubmit();"/><br>
</cfform>
</cfoutput>
<br>
<cfif IsDefined("formsubmitted") and formsubmitted eq "true">
<cfoutput>
<cfdiv bind="url:dynamicDiv.cfm?symbol={symbol}&selected_ic={selected_ic}&preparerID={preparerID}"
bindonload="false">
</cfdiv>
</cfoutput>
</cfif>
