the referring page has a loop that generate the value for the page that is getting the error and I am thinking that the value is not being passed to that page.
</tr>
<cfloop index="i" from="2" to="#SESSION.Order.FrequentFlyer.Count#">
<tr>
<td>
Date <cfoutput>#i#</cfoutput>:
<input type="text" name="txtFFDateSetMonth[<cfoutput> #i# </cfoutput> ]" class="txtboxdt" maxlength="2"
value="<cfoutput> #Mid(DateFormat(dtTargetDate[i],"MM/DD/YYYY"),1,2)# </cfoutput> "> /
<input type="text" name="txtFFDateSetDay[<cfoutput>#i#</cfoutput>]" class="txtboxdt" maxlength="2"
value="<cfoutput>#Mid(DateFormat(dtTargetDate[i],"MM/DD/YYYY"),4,2)#</cfoutput>"> /
<input type="text" name="txtFFDateSetYear[<cfoutput> #i# </cfoutput> ]" class="txtboxdt" maxlength="2"
value="<cfoutput> #Mid(DateFormat(dtTargetDate[i],"MM/DD/YYYY"),9,2)# </cfoutput> ">
<input type="hidden" name="txtFFDateSet[<cfoutput>#i#</cfoutput>]">
</td>
</tr>
</cfloop>
<input type="hidden" name="txtFFFirstDate" value="<cfoutput> #form.txtFFDateSet# </cfoutput> ">
this hidden field
<input type="hidden" name="txtFFDateSet[<cfoutput> #i# </cfoutput> ]">
contains the undefined value. does it need a value (name="" value="") on the referring page and if so what should it be?
Forgive me in advance if I am not being clear, I have looked at this issue all day with no revelations.
Reputation Points: 10
Solved Threads: 0
Junior Poster in Training
Offline 69 posts
since Jul 2005