Hello. I have this BIG problem, have tampered with this for weeks now. I try
to insert a record to an Access database (memo-field). Everything works ok
both locally ([url]http://localhost[/url]...) and on an iis server. That is, until I
try to upload huge amounts of text. Locally it works ok but when the
database is on a remote server it won't work. I get

error '80020009'
Exception occurred.

/intratest/ny_nyhet.asp, line 56

...and on that line 56 in the asp page there is this block of code (generated
by the Dreamweaver insert record behaviour):

' set the form values
For MM_i = LBound(MM_fields) To UBound(MM_fields) Step 2
MM_fields(MM_i+1) = CStr(Request.Form(MM_fields(MM_i))) //<-This is the line
56
NextText

Up to 15 pages (some 120.000 characters incl. whitespace) of this word text
(converted to html and stripped out of word specific tags) works, if I paste
in more than that then I get this error. I know an Access memofield can
store more than the announced 65.535 characters if stored programmatically.
It actually does it ok locally ([url]http://localhost[/url]...) so the problem
shouldn't be here.

I tested ADO, OLEDB and DSN connections, all gives the same error. I tested
on another iis server (another webhotel actually) and still get same error.

I'we contacted Macromedia support (still think the insert behaviour could be
my problem) but have not got any answer from there.

I do not get a server timeout. Please help!