Display Results for TextArea fields
I am a novice ColdFusion user. I am trying to display results taken from an Access database to a CF form in which users can update their responses and then re-submit. Some of the fields displayed can be responsed in one line such as #1 below (which is correct).
However, I need to code how to display results to a bigger TextArea field such as #2 below which is not coded correct. How should #2 be re-written so that it can be displayed?
#1
<tr>
<td width="20%" height="25"><b><font size="3" color="#FFFFFF">Kids-Ages<br>
</font></b></td>
<td width="54%" height="25">
<input type="text" name="Kids" value="<cfoutput>#Query1.Kids#</cfoutput>" size="40" maxlength="40">
</td>
</tr>
-----------------------------------------------------------------------------------------
#2
<tr>
<td width="20%" height="25"><b><font size="3" color="#FFFFFF">Grandchildren<br>
</font></b></td>
<td width="54%" height="25"> <b>
<textarea name="Grandchildren" cols="100" rows="3">value="<cfoutput>#Query1.Grandchildren#</cfoutput>"</textarea>
</b></td>
</tr>
