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

Action File Appears not to be working

Status
Not open for further replies.

roropacific

IS-IT--Management
Jun 29, 2002
23
US
the search.cfm appears to be not working. My browser just refreshes.
Here is my action file "search.cfm"
<CFPARAM NAME=DATASRC DEFAULT=custsrvc>
<cfoutput>#form.searchvar# </cfoutput>
<CFQUERY NAME=GETITEMS DATASOURCE=#DATASRC#>
SELECT * FROM complaint where product_id like '#form.searchvar#%'
</CFQUERY>
<CFOUTPUT>
<TABLE BORDER=1 CELLPADDING=1 CELLSPACING=1 ALIGN=CENTER bgcolor=&quot;cccccc&quot; >

<TR>
<TD ALIGN=CENTER>
<FONT COLOR=FFFFFF STYLE=&quot;font-size: 12px&quot; FACE=&quot;Arial&quot;>
Agent
</FONT>

</td>
<TD ALIGN=CENTER>
<FONT COLOR=FFFFFF STYLE=&quot;font-size: 12px&quot; FACE=&quot;Arial&quot;>
Product ID
</FONT>
</TD>

<TD ALIGN=CENTER>
<font COLOR=FFFFFF STYLE=&quot;font-size: 12px&quot; FACE=&quot;Arial&quot;>
Issue Summary
</FONT>
</TD>

<TD ALIGN=CENTER>
<FONT COLOR=FFFFFF STYLE=&quot;font-size: 12px&quot; FACE=&quot;Arial&quot;>
Issue Description
</FONT>
</TD>

<TD ALIGN=CENTER>
<FONT COLOR=FFFFFF STYLE=&quot;font-size: 12px&quot; FACE=&quot;Arial&quot;>
Current Date
</FONT>
</TD>

<TD ALIGN=CENTER>
<FONT COLOR=FFFFFF STYLE=&quot;font-size: 12px&quot; FACE=&quot;Arial&quot;>
Location of Purchase
</FONT>
</TD>

<TD ALIGN=CENTER>
<FONT COLOR=FFFFFF STYLE=&quot;font-size: 12px&quot; FACE=&quot;Arial&quot;>
Date of Purchase
</FONT>
</TD>

<TD ALIGN=CENTER>
<FONT COLOR=FFFFFF STYLE=&quot;font-size: 12px&quot; FACE=&quot;Arial&quot;>
Tracking Number
</FONT>
</TD>
</TR>

<CFLOOP QUERY=GETITEMS>
<TR>
<TD>
<FONT COLOR=FFFFFF STYLE=&quot;font-size: 12px&quot; FACE=&quot;Arial&quot;>
#GETITEMS.username#
</FONT>
</A>
</TD>

<td>
<FONT COLOR=FFFFFF STYLE=&quot;font-size: 12px&quot; FACE=&quot;Arial&quot;>
#GETITEMS.product_id#

</FONT>
</A>
</td>

<td>
<font COLOR=000000 STYLE=&quot;font-size: 12px&quot; FACE=&quot;Arial&quot;>
#GETITEMS.issue_summary#
</FONT>
</TD>

<TD>
<FONT COLOR=000000 STYLE=&quot;font-size: 12px&quot; FACE=&quot;Arial&quot;>
#GETITEMS.issue_description#
</FONT>
</TD>

<TD>
<font COLOR=000000 STYLE=&quot;font-size: 12px&quot; FACE=&quot;Arial&quot;>
#GETITEMS.currentdate#
</FONT>
</TD>

<TD>
<FONT COLOR=000000 STYLE=&quot;font-size: 12px&quot; FACE=&quot;Arial&quot;>
#GETITEMS.locationofpurchase#
</FONT>
</TD>

<TD>
<FONT COLOR=000000 STYLE=&quot;font-size: 12px&quot; FACE=&quot;Arial&quot;>
#GETITEMS.dateofpurchase#
</FONT>
</TD>

<TD>
<FONT COLOR=000000 STYLE=&quot;font-size: 12px&quot; FACE=&quot;Arial&quot;>
#GETITEMS.issueid#
</FONT>
</TD>
</TR>

</CFLOOP>


</TABLE>


</CFOUTPUT>
 
Please post the resolution to this so that others may benefit from your experience.

Phil Hegedusich
Senior Web Developer
IIMAK
-----------
Boy howdy, my Liberal Studies degree really prepared me for this....
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top