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 Chris 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. chasbrouck

    Help with CFFILE & input type="file".Please!!!!

    Yes, I figured out a away around this. What I did is place a hidden filed on the form called file 1. Then on the file field that the user selects the file to upload I place a javascript command to copy the value of the field to the hidden file...
  2. chasbrouck

    Help with CFFILE & input type="file".Please!!!!

    Ok heres the problem. I am passing a filename to anotherpage using the following: <INPUT NAME="file1" TYPE="file" size="40"> For instance the file selected for file1 is c:\documents\abc.doc My form then submits this field to anotherpage where I need to evaluate the filename abc.doc. However...
  3. chasbrouck

    one cfmail every 15 minutes

    At what interval do you have the server set to spool at? We have ours set to 60 seconds, and do not have an issue with enties getting lost in the spool. Chris
  4. chasbrouck

    Session Variable Problem

    Try adding this code to your application.cfm <!--- preserve client/session variables until browser closes ---> <cfset Cookie.CFID = session.CFID> <cfset Cookie.CFTOKEN = session.CFTOKEN> This should keep your session variables defined until the browser closes. By adding this code your...
  5. chasbrouck

    Date related query problem, need syntax help

    Hello, I am trying to execute a query that gets a date from a user form and compares it against a field in my Database. The trouble is that the field in the database is a text field containing a date and a time in the following format: mm/dd/yyyy-hh:mm AM I can not change this field to be a...
  6. chasbrouck

    Comparing dates in an SQL statement

    Hello, I was hoping someone here may be able to help me out. I am connecting to an ORACLE Database and doing some processing. One of the things I need to do is pull records that have a value in a field called START_DT that is greater than the Current date. Here is what is a portion of my where...

Part and Inventory Search

Back
Top