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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by object

  1. object

    comparing just the month in a date field

    where month(MI.meeting_date) = #session.current_month#
  2. object

    passing variables via links

    You can use the URL parameter &quot;number&quot; in the next page as the following: <CFQUERY datasource=&quot;myDSN&quot; name=&quot;myQ&quot;> SELECT * FROM myTable WHERE number = #URL.number# </CFQUERY>
  3. object

    ASP or Coldfusion?

    CFML is much easier than ASP. CFML works under different OSs (Windows, Unix, Linux, etc) and different Web servers (Apache, IIS, etc..) while ASP works only under windows and IIS. Goodluck
  4. object

    CFoutput tag Usage

    Hi, CF application server returns the HTML code as it is, so it doesn't matter if you put HTML tags within the CFOUTPUT tags. I think it's better to use the CFOUTPUT tag on-demand. Goodluck
  5. object

    How to display double quote(&quot;&quot;) in the textbox??

    oooh that doesn't seem clear, put the value (the double quotes) between single quotes (value='') Goodluck :)
  6. object

    How to display double quote(&quot;&quot;) in the textbox??

    Here we go... <input value='&quot;&quot;'> Goodluck :)
  7. object

    Update date

    <cfquery datasource=&quot;&quot;> update mydata set last_updated = '#dateFormat(now())#', .............. ................. </cfquery>
  8. object

    convert asp to cf

    SUPPOSING YOU ARE REQUESTING THE VARIABLES FROM A FORM: <!--- ASP To ColdFusion ---> <cfoutput> <cfset TeamNumber = &quot;#form.TeamNumber#&quot;> <cfif len(TeamNumber) EQ 0> <cfset DocumentName = &quot;#form.DocumentName#&quot;> <cfif len(DocumentName) GT 0> <cflocation...
  9. object

    Need to select year of date/time field.

    - Year(Date) - <CFQUERY maxrows=&quot;1&quot;></CFQUERY>

Part and Inventory Search

Back
Top