> juat a question here, not so much on CF, but will like to do > it on a CF page, how I can make a page dynamically generate > its content without refresh a page as i have see this on some > web site. for example, if i click on a button then the page > will display a table with some data on it (of course without > refresing the whole page again). is it possible? if yes, how > technical is it?
You can use JavaScript to do this. You can't use CF, by itself. You can rewrite parts of a page using DHTML, or all of a page using document.write. If you need to exchange data with the server, you can use frames or "pipes": http://www.depressedpress.com/DepressedPress/Content/ColdFusion/Essays/GIFAs Pipe/ (originally pointed out to the list by Dick Applebaum, if I recall correctly) Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm 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

