Link to home
Start Free TrialLog in
Avatar of CalDev
CalDev

asked on

Problems with cfhttpparam

I am trying to retrieve data from a dynamic page that requires variables in order for the page to render.  I have used this code (simplified) and the cfhttpparam is not passing the variable.  What am I doing wrong?


<cfhttp method="get" url="http://www.mydoamin.com/page1.cfm?cat=Bait%20and%20Tackle">
	                      <cfhttpparam type="url" name="region" value="1">
                        <cfhttpparam type="url" name="Text" value="Region search">
                        <cfhttpparam type="url" name="link" value="page2.html">
</cfhttp>
<cfoutput>
	#cfhttp.FileContent#
</cfoutput>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Zvonko
Zvonko
Flag of North Macedonia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of CalDev
CalDev

ASKER

The first solution worked, but was really trying to make the cfhttpparam do its job.