sunny: Die Lösung - Keine Lösung!

Beitrag lesen

Hallo!

Es gibt wirklich keine Möglichkeit, das Problem mit "normalem" ASP zu lösen. Ich hab dazu jetzt Folgendes gefunden:

Why can't I use Request.Form in conjunction with an Upload?
Uploading is performed via an Internet standard called RFC1867. This standard uses a different encoding scheme than typical HTML forms. Typically an HTML may be defined as:

[FORM METHOD="POST" ACTION="PROCESS.ASP"]
To upload files, an additional attribute must be specified:

[FORM METHOD="POST" ACTION="PROCESS.ASP" ENCTYPE="MULTIPART/FORM-DATA"]
This attribute changes the encoding type (ENCTYPE) of the form for efficiency of transfering large amounts of data. However, this encoding type is not understood by ASP's Request.Form method. It is unable to separate the file information from the other form data.

Das heißt, das ganze Formular muss über eine zusätzliche Komponente verarbeitet werden. Und ich muss leider das ganze Script neu schreiben :(

Trotzdem danke für eure Hilfe.

Lg,
sunny

PS: Vielleicht könnte man im Feature-Artikel zum ASP-Upload da einen Hinweis drauf machen!?