I have a page that runs a query to get info to populate a page. That page then calls 
itself with a variable that makes it run some procs that change the data that is 
displayed. The query “get_sale_info” runs when the page is recalled but then the 
info is changed so I call the query again after the procs which change the data run. 
This used to replace the first query with the second query, but after switching to MX 
it now doesn’t seem to run the second query, I still get the info from the query 
before the procs. I need to run the first query before the procs because the procs 
need that info, but need to run the same query again after the procs to show updated 
info on the page. The queries aren’t cached.  Any ideas?
Here’s a run down:
 
<query_one>
 
<cfif isDefined(“run_procs”)>
procs that update info
<query_one(same query as above to reflect changes)>
</cfif>
 
<cfoutput query_one>
<a href=”#CGI.SCRIPT_NAME#?run_procs=1”>update</a>
</cfoutput>
*        
*       Ken Brocx
*       C.E.O Hamster Relations
*       www.hamsterific.com
*       [EMAIL PROTECTED]
*        
 

______________________________________________________________________
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
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

Reply via email to