Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. guitboxgeek

    ADDING RECORD USING 'INSERT INTO' AND RETRIEVE NEW RECORD AFTER...

    Great Tip swamp! I'm curious why you think MAX() would be less reliable?
  2. guitboxgeek

    ADDING RECORD USING 'INSERT INTO' AND RETRIEVE NEW RECORD AFTER...

    To ensure that you have the very highest record id, you could also do something like this: select MAX(field_here) from yourTable
  3. guitboxgeek

    Updating site from asp to ColdFusion.

    Glad to help. Sometimes the most obvious is the least noticeable [bigsmile]
  4. guitboxgeek

    session time out/logoff

    After not being used for 20 mins.
  5. guitboxgeek

    session time out/logoff

    <!--- This code will send the user to a timeout page after 20 minutes ---> <script language=&quot;JavaScript1.2&quot;> setTimeout('window.location.href=\&quot;/timeout.cfm&quot;',1200000); </script> Place this in your code. If it needs to work on every page of your site, use includes.
  6. guitboxgeek

    Updating site from asp to ColdFusion.

    Hi JanetB, This is probably a silly question, but did you make sure that your variable output in your link is inside of a <cfoutput></cfoutput> ? <cfset oid = 1 > <a href=&quot;/NewOnlineOrdersEnterNumber.cfm?oid=<cfoutput>#evaluate(oid+1)#</cfoutput>&quot;>NEXT</a>

Part and Inventory Search

Back
Top