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!

Auto Fill Forms IE

Status
Not open for further replies.

jmcd0719

Programmer
Jun 13, 2001
37
US
I have to login into a CFM screen that asks for two pieces of data and a submit. Unfortunately I do not know the object names. Is there a way to populate these two fields with data passed from me and submit. I can do this through activex automation when I know the variable name, but when it's running through cold fusion sometimes the varible name is not public.

Thanks in advance

Sample Screen

Enter Patient __________
Enter Date __________

SUBMITBUTTON

 
How is the data being passed? Through a URL, through a form on a previous page, etc? FTK
 
Loop over the form.formfields variable.
<cfloop list=&quot;#form.formfields#&quot; index=&quot;i&quot;>
#i# = #Evaluate(i)#<br>
</cfloop>

In this way you can find out the values. Hope this helps.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top