Date:  04/07/2006 07:52:46 PM Msg ID:  002908
From:  FoxWeb Support Thread:  002906
Subject:  Re: Returning a Memo field to browser
Memo fields can be displayed just like any other text values, including character fields and variables.  In an fwx file you could simply use:
 

<%=FieldName%>

 
or
 

<%

Response.Write(FieldName)

%>

 
If you want to display the data in a textarea field, you could do so this way:
 

<textarea><%=FieldName%></textarea>

FoxWeb Support Team
support@foxweb.com email

Sent by John Brennan on 04/07/2006 02:11:48 PM:
I have a memo field that was captured from a text area and every way to bring it back to a browser has failed. VFP 6  and WebFox 3.0 What's the right way?