
February 5th, 2004, 12:44 PM
|
|
Moderator
|
|
Join Date: Jun 2002
Location: Raleigh, NC
|
|
|
You don't need the pound signs:
<cfif form.regionTown eq 1>
...
However, I suspect that what this person is trying to do must be done with Javascript. It looks like they are trying to make CF respond to a change in a form field within the same page, which CF can't do (nor any other server-side application server). If you post this form to the server, the next page can respond based on the selection that was submitted. But without a page refresh, you have no choice but to write Javascript event handlers to do this.
|