Using MySQL, ASP
I have a blob/text field in a database "Client" for entering and displaying info that does not fall into one of the input page formats.
I can enter the data in on the input form and it is saved in the database. However, I cannot figure how to display the data on another form.
Using the following code:
<%
Response.write("<br> memo = " & vMemo)
%>
<br>
<tr><td><textarea name = "Memo" rows = "5" cols = "90" value = "<%=vMemo%>" ></textarea></td></tr>
<tr><td><textarea name = "Memo" rows = "5" cols = "90" value = "<%=rs.fields("Memo") %> " ></textarea></td></tr>
The response.write displays the test data OK, so I know it has been saved.
The first textarea command displays a blank (5 rows, 90 Col)dialog box.
The second textarea command displays a dialog box with a "Cannot find error" inside.
Thanks in advane for any help.
Smokey
I have a blob/text field in a database "Client" for entering and displaying info that does not fall into one of the input page formats.
I can enter the data in on the input form and it is saved in the database. However, I cannot figure how to display the data on another form.
Using the following code:
<%
Response.write("<br> memo = " & vMemo)
%>
<br>
<tr><td><textarea name = "Memo" rows = "5" cols = "90" value = "<%=vMemo%>" ></textarea></td></tr>
<tr><td><textarea name = "Memo" rows = "5" cols = "90" value = "<%=rs.fields("Memo") %> " ></textarea></td></tr>
The response.write displays the test data OK, so I know it has been saved.
The first textarea command displays a blank (5 rows, 90 Col)dialog box.
The second textarea command displays a dialog box with a "Cannot find error" inside.
Thanks in advane for any help.
Smokey