Can anyone tell me how to force a carriage return in a textarea box. Code below writes text to box but puts each iteration of LINVmmyy next to previous iteration.
*********************************************************
document.write ("<textarea name='IBIF_adhocfex' rows='10' cols='50' value align='LEFT'>"
while (num <= sMths)
{
document.write ("linv" +sMth +sYear)
/***need forced return here**/
num=num +1
sMthi=sMthi +1
sMth=sMthi
sYear=sYeari
}
document.write("</textarea>"
*************************************
Current Output [LINV0101LINV0201]
Need [LINV0101
LINV0201]
Eric
If you create something idiot proof,
Nature will create a better idiot.
*********************************************************
document.write ("<textarea name='IBIF_adhocfex' rows='10' cols='50' value align='LEFT'>"
while (num <= sMths)
{
document.write ("linv" +sMth +sYear)
/***need forced return here**/
num=num +1
sMthi=sMthi +1
sMth=sMthi
sYear=sYeari
}
document.write("</textarea>"
*************************************
Current Output [LINV0101LINV0201]
Need [LINV0101
LINV0201]
Eric
If you create something idiot proof,
Nature will create a better idiot.