Hi. I have not managed to find out what the problem is.
I am trying to update a memofield from a form.
My file.. sign_midi.asp has this partial code.
First I pick up the record I want to update.
And then present it in a form.
"
<tr>
<td align="right" height=10 valign="top"><b>Beskrivning :</b></td>
<td align="left" height=10 valign="top" width=250><TEXTAREA WRAP="soft" name="M1" cols="65" rows="8"><% = rs("text")%></TEXTAREA></td>
</tr>
And then I want to save the new input.
sql_updat = "UPDATE PRODUCTS SET text='"& beskrivning &"' WHERE code_no='"& artikelnummer &"'"
Set con = Server.CreateObject("ADODB.Connection")
con.Open data_source
con.Execute sql_updat
Please have someone got an answer that could help me? All the other fields are working fine, if I exclude the memo field.
Anders
I am trying to update a memofield from a form.
My file.. sign_midi.asp has this partial code.
First I pick up the record I want to update.
And then present it in a form.
"
<tr>
<td align="right" height=10 valign="top"><b>Beskrivning :</b></td>
<td align="left" height=10 valign="top" width=250><TEXTAREA WRAP="soft" name="M1" cols="65" rows="8"><% = rs("text")%></TEXTAREA></td>
</tr>
And then I want to save the new input.
sql_updat = "UPDATE PRODUCTS SET text='"& beskrivning &"' WHERE code_no='"& artikelnummer &"'"
Set con = Server.CreateObject("ADODB.Connection")
con.Open data_source
con.Execute sql_updat
Please have someone got an answer that could help me? All the other fields are working fine, if I exclude the memo field.
Anders