In the loop below
<CFLOOP QUERY=myquery>
<A HREF="mypage.cfm?myvar=#myvar#&qvar=#myquery.ID#">edit occurence</A>
</cfloop>
the variable myvar is not part of the query.
CF makes the value of 19 into 19.0
?myvar=19.0&qvar=2
Other links on the page use
?myvar=#myvar# without evaluating #myvar# to 19.0
How do I make it stay without the <myvar>.0 on the end of it?
because it later breaks this page when I return the user back to the form.
If I change the querystring to ?myvar=19 it is fine again.
Thank you
Aaron
<CFLOOP QUERY=myquery>
<A HREF="mypage.cfm?myvar=#myvar#&qvar=#myquery.ID#">edit occurence</A>
</cfloop>
the variable myvar is not part of the query.
CF makes the value of 19 into 19.0
?myvar=19.0&qvar=2
Other links on the page use
?myvar=#myvar# without evaluating #myvar# to 19.0
How do I make it stay without the <myvar>.0 on the end of it?
because it later breaks this page when I return the user back to the form.
If I change the querystring to ?myvar=19 it is fine again.
Thank you
Aaron