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 strongm 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. geofflilley

    how to create a guestbook...

    GUJUm0del., What I would do is, on the top of your actionForm.cfm page, put this code: <cfloop list=&quot;#form.fieldnames#&quot; index=&quot;i&quot;> <cfoutput>#i#</cfoutput> </cfloop> <cfabort> This will give you a list of all your form field names. If your form method is GET...
  2. geofflilley

    Good Programming Info

    You can also go to http://coldfusionjournal.com. You can sometimes read articles online, but if nothing else, you can subscribe, or write Circulation to find out where it is in your area. When I wrote, I got helped by Cherie Johnson of Sys-Con (publishers of the magazine) at...
  3. geofflilley

    Multiple DSN query

    Tim- AFAIK it is: <cfquery name=&quot;getBooks&quot; datasource=&quot;publishers&quot;> select pub.dbo.publisherInfo.name, books.dbo.titles.title from pub.dbo.publisherInfo, books.dbo.titles </cfquery> You do the name of the datasource first, then &quot;dbo&quot;, then the table name...
  4. geofflilley

    Writing for optimal speed

    Kendo, I agree with Klotzki. Some of the tips I use: 1. When you want to check for the existence of a variable, use <cfif isDefined(&quot;form.variable&quot;)>. I used to CFPARAM my variables, then check for len, but isDefined is faster. 2. Scope your variables. A local variable would be...

Part and Inventory Search

Back
Top