
March 27th, 2003, 08:20 AM
|
|
Junior Member
|
|
Join Date: Mar 2003
Posts: 6
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
Only difference, really, is that the <TEXTAREA> has no "Value" attribute.
Here is an example of how I did it;
<TD width=20% valign=top>
<textarea name="Notes" ROWS="10" COLS="30" WRAP="Virtual" onFocus="addReturn(this)" CONTENTEDITABLE = sCanEdit onChange="javascript:this.value=this.value.toUpperCase();"><%=rs("Notes") %></TextArea>
</TD>
Hope it helps.
|