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 TouchToneTommy 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. pjbarteck

    passing javascript variables to coldfusion?

    xor To pass a JavaScript variable value to CF siimply declare the variable as a Global Variable in JavaScript first. (i.e., var sample = 0; be sure to declare it outside of a function but still inside the <script> </script> in the <head> <head> portion of the .cfm page. Then...
  2. pjbarteck

    What does evaluate mean, and where is an example?...

    happyb, Sorry for the late response to your question...but just found the site.... ColdFusion only knows about variables defined within itself, it does not know about pseudovariables. Whenever you send a value from a Form via the SUBMIT which uses a dynamic name for its...
  3. pjbarteck

    For loop for checkboxes

    ma701sd, Try this: In header declare a Global Variable: <head> <script> var checkboxes = 0; function numberCheckboxes() { for (var i=0; m<document.formname.fieldname.length; m++) { if (document.formname.fieldname[i].checked) { { x...
  4. pjbarteck

    Display time prtion of Oracle 8.1.5 date field with Coldfusion

    minyme, The best way to extract time for a date field input by sysDate is a little cumbersome but that is because of the way it is stored. Try this: <cfquery name=&quot;gettime&quot; datasource=&quot;databasename&quot;> select timefieldname from table...

Part and Inventory Search

Back
Top