RE: Help! How can I extract a form from a webpage?

2002-04-15 Thread Kris Pilles
Ernie: I was wondering if you sent that CD you mentioned out? Also, whats on it? I'm looking forward ot getting it. -Original Message- From: Ernie Pena [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 11, 2002 3:46 PM To: CF-Talk Subject: Help! How can I extract a form from a webpage

RE: Help! How can I extract a form from a webpage?

2002-04-11 Thread Mario Martinez R.
Ernie : After CFHTPP the page content is gonna be in #cfhttp.filecontent# as an string. After that you only have to use regular expresion and some string functions like REFind to get the data you want. hint:You can see html code of the page you want to retrieve in advance in your browser. I hope

RE: Help! How can I extract a form from a webpage?

2002-04-11 Thread Shawn Grover
The Form names are URL parameters, if the form is submitted with the GET method. So, you can just scan through your Query_String for the name/value pairs. This can be done by looping through the URL elemetents (in cfscript something like "for( field in url )"), or by parsing the parameters as a