> Are there ColdFusion "Procedures" That I can run on a form post? > > like: <form name="logout" action=" call cold fusion code to > be run on logout" method="get">
There's no equivalent in CF to the RUNAT="SERVER" you can use in ASP.NET. In CF, if you have a FORM tag, it's really just an HTML FORM tag. Forms don't automatically have "postback" functionality. So, no, not really. > Also, can I call Coldfusion procedures from onBlur() events? Again, no, not directly. You can easily get the same kind of results, though; you just have to do things a little differently. For example, you could have your onblur event handler invoke an AJAX call to a CF page. ColdFusion doesn't provide the same abstractions that ASP.NET does; in some ways, it's a little "closer to the metal". CF doesn't blur the boundaries of server-side and client-side functionality like ASP.NET does. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training centers in Washington DC, Atlanta, Chicago, Baltimore and Northern Virginia, or on-site at your location. Visit http://training.figleaf.com/ for more information! ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year. http://www.fusionauthority.com/quarterly Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259997 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

