> I was curious if there is anyway to have a listener of > sorts via coldfusion. I basically want a dynamic form > of mine to verify each field against the server as the > user submits the data. I see this done a lot with applets > and with oracle but I haven't seen anything like this > with Coldfusion? Is it possible...if so have an example I > can look at?
By itself, ColdFusion can't do this. CF doesn't "listen", it simply handles requests sent to it by the web server. However, you can build something with the same effect by using JavaScript and DHTML or frames on the client; every time a user changes a field, you'd have to submit an HTTP request back to the server, wait for the response, then process that response. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 ______________________________________________________________________ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

