[thelist] Why are these objects undefined????

Steve Abaffy sabaffy at mswebdevelopment.com
Thu Aug 14 18:08:07 CDT 2003


Hello I have the following:
This table is mostly generated by going through a record set. The names
TAH1, TAH2 etc are generated by takeing "TAH" & RS("ProductNumber")
Then in the second row of the table the DV and HV are generated the same
way.


<form action="ReassignCredits.asp" method="post" name="frm">
<table>
<tr>
	<td>
		<div name="TA1">10</div>
		<input type="hidden" size="3" name="TAH1" value="10">
	</td>
	<td>
		<div name="TA2">11</div>
		<input type="hidden" size="3" name="TAH2" value="11"
	</td>
</tr>
<Tr>
	<td>
		<div name="DV141">10</div>
		<input type="hidden" name="HV141" value="10" size="3">
		&nbsp;&nbsp;
		<img src="/images/uparrow.gif" onClick="MoveQuantityUp('141',1);">
	</td>
	<td>
		<div name="DV142">15</div>
		<input type="hidden" name="HV142" value="15" size="3">
		&nbsp;&nbsp;
		<img src="/images/uparrow.gif" onClick="MoveQuantityUp('142',2);">
</tr>
</table>
</form>

function MoveQuantityUp(HiddenName,productID){
	HTMLName = eval("document.frm.DV" + HiddenName);
	HiddenName = eval("document.frm.HV" + HiddenName);
	TAH = eval("document.frm.TAH" + productID);
	TA = eval("document.frm.TA" + productID);
}
Now here HTMLName is undefined
HiddenName is ok and I can work with it
TAH is ok and I can work with it
TA is undefined

Not sure I understand why??????

Thanks for any insight.
***************************************************************************
When we turn the pages of history, when these days have passed long ago
Will they look upon us with sadness for the seeds that we let grow?
Neil Peart.
***************************************************************************




More information about the thelist mailing list