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

url to track customers

Status
Not open for further replies.

rb1976

Programmer
Oct 11, 2001
5
US
I posted this question in October but now that I am trying it out, it won't work. I am trying to track customers by giving them a URL like:

I need the SourceOrgID=802 to be submitted to the database at the end of the transaction. I am typing:

<input type=&quot;hidden&quot; name=&quot;idnumber&quot; value=&quot;<output>#url.SourceOrgId#</output>&quot;>

to carry it through but I keep getting error:

Error resolving parameter URL.SOURCEORGID
The specified URL parameter cannot be found. This problem is very likely due to the fact that you have misspelled the parameter name.

The error occurred while processing an element with a general identifier of (#url.SourceOrgId#),

Please help me with this if you can
 
Yes, the hidden field is in the form like this:
<cfif IsDefined(&quot;url.SourceOrgId&quot;)>
<input type=&quot;hidden&quot; name=&quot;SourceOrgId&quot; value=&quot;<cfoutput>#url.SourceOrgId#</cfoutput>>
</cfif>

I can't figure out how to carry it through 6 pages to be submitted at the end.

 
check that section of your code carefully...

<cfif IsDefined(&quot;url.SourceOrgId&quot;)>
<input type=&quot;hidden&quot; name=&quot;SourceOrgId&quot; value=&quot;<cfoutput>#url.SourceOrgId#</cfoutput>>
</cfif>

you are missing a double quote at the end or </cfoutput> .. i am not sure if that might be causing the problem .. but that might work ...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top