Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ASP and Access: Memo Fields

Status
Not open for further replies.

YoelBenYossef

Programmer
Nov 16, 2005
38
CA
Hi there,
I'm trying to use access to store data that I get in an ASP form. When I'm uploading to a field in my asp page to access, I use the commands:

rst.AddNew
rst("EventName")=request.form("txtEventName")
rst.update

It works perfectly if the field that I'm inserting into in access is anything but the Memo field. Does anyone know what command should be used to upload into a memo field?

Thanks
Eric
 
Take a look at the AppendChunk and GetChunk methods.
 
Thanks, it works great. I used it like this:

rst("OrderBarcodes").AppendChunk (request.form("txtBringBackBarcodes"))

Eric
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top