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...
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...
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...
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="gettime" datasource="databasename">
select timefieldname from table...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.