How do I get an ASP to display a "Memo" field from Access

D

Don Walton

I am having trouble getting the memo field to display in an ASP on my web
site. It is coming from an Access file. Can anyone help?

Thanks

Don Walton
 
K

Kathleen Anderson [MVP - FrontPage]

What kind of trouble are you having? Error messages, etc.?
 
C

clintonG

This is a known issue. I'm sorry I can't remember exactly how to resolve but
as I recall we had to do something like declare the name of the memo field
as the first value passed to the SQL command or something very similar to
that response as it had something to do with the order of this or that.

Ambiguous for sure but I'm fairly confident that this issue will be
documented at the ASP FAQ [1] which you should learn about using anyway.

<%= Clinton Gallagher
NET csgallagher AT metromilwaukee.com
URL http://clintongallagher.metromilwaukee.com/


[1] http://aspfaq.com/
 
M

MD Websunlimited

Hi Don,

Make the memo column the last column selected by the SQL. Also, use the native JET driver.
 
J

Jon Spivey

You'd also want to assign it to a variable,eg
<%
set oRs = connection.execute("select field1, field2, memofield from table")
memo = oRs("MemoField")
%>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top