logic
Hello, can anyone tell me why this wont work? I really cant see why it dont work it seams so simple.
a.cfm
<cfform>
<cfinput type="radio" name="radiobutton" value="1">
<cfinput type="radio" name="radiobutton" value="2">
<cfselect name="ore">
<option value="all" selected="selected">Any type</option>
<option value="2">Doo</option>
<option value="4">Qoo</option>
</cfselect>
</cfform>
<cfdiv bind="url:b.cfm?orenum={ore} & type={radiobutton}"/>
b.cfm
<cfoutput>
<cfif isdefined("URL.type")>
working
<cfelse>
not working
</cfif>
</cfoutput>
<cfdump var="#url#" label="url">
