
Entering vast amont of text into memo-field of access-database (on server)
Have you tried METHOD="POST" ? Remember that there is a limit to the amount
of data that the browser can transfer using any method. If they're entering
THAT much text, it is likely they are cutting and pasting from an existing
file of some sort... why not enable them to upload a text file that you
parse on the server, instead of being limited by HTML?
www.aspfaq.com
Quote:
> I have a website where a access-database resides. On the website I can
work
> with asp.
> From time to time I want to update/add new text into a memo-field from
that
> remote database.
> It is possible to bring a small amount of text into that memo-field by a
> form with
> METHOD="GET" ACTION="File.asp".
> But this is not possible for big volume of text.
> With what can I achieve that?
> Suggestion are welcome.
> Note : I can put and retrieve files from that website by ftp, but I do not
> want to retrieve the database by ftp, altering it and resending it to the
> website.