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 Chriss Miller 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. curiosity

    For Darkman

    Sorry missed the solution already there. Duh.
  2. curiosity

    For Darkman

    In your last page which is doing the updates give the parameters a form. prefix i.e <cfparam name=&quot;form.name&quot; default=&quot;&quot;> and when updating use #form.name# While you can get away without using prefixs such as url. and form. it doen't always work the right way. Its better to...
  3. curiosity

    Alternating row colors

    Just to rewrite the code for non query related loops. <cfset loopCount = 0> <cfloop {looping condition}> <cfif loopCount MOD 2 IS 0> <cfset myColor = &quot;red&quot;> <cfelse> <cfset myColor = &quot;ff66ff&quot;> </cfif> ...code <table...
  4. curiosity

    cftransaction // isolation levels // sql server

    I need to find indepth information about the isolations levels in the <cftransacion> tag. I need to make sure that a selection of selects,inserts and updates are grouped and no other client can process the same page until the transation is complete. I have found some documentation but need...

Part and Inventory Search

Back
Top