Home > Archive > ASP > August 2005 > Upload Image, file to IIS server
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Upload Image, file to IIS server
|
|
| Martin 2005-08-19, 4:12 pm |
| Hi,
I search for free script to enable function UPLOAD Images, Files to
Webserver, and save in a directory.
I have tried a free script, but it doesn't work.
(http://www.freeaspupload.net), when I try the example of this page it does,
but with my pages it does not.
Thanks
Martin
| |
| Aaron Bertrand [SQL Server MVP] 2005-08-19, 4:12 pm |
| What on earth does "doesn't work" mean? Did you bother trying more than one
or trying to diagnose/troubleshoot?
http://www.aspfaq.com/2189
"Martin" <martinsm@freenet.de> wrote in message
news:%23Vc$4XNpFHA.1444@TK2MSFTNGP10.phx.gbl...
> Hi,
> I search for free script to enable function UPLOAD Images, Files to
> Webserver, and save in a directory.
>
> I have tried a free script, but it doesn't work.
> (http://www.freeaspupload.net), when I try the example of this page it
> does,
> but with my pages it does not.
>
> Thanks
> Martin
>
>
| |
| Martin 2005-08-19, 4:12 pm |
| thanks,
but the code ist very complex, otherwise I cannot simply debug ASP code. But
when you can help me....
The Error message is following:
006~ASP 0206~BinaryRead can not be called after using collection
Request.form...
I can understand the message, but with the demo of freeaspupload, the
collection Request.form.. was used (called) too. I have not modified the
original Upload class.
Thanks
"Aaron Bertrand [SQL Server MVP]" <ten.xoc@dnartreb.noraa> schrieb im
Newsbeitrag news:OMGaHZNpFHA.1204@TK2MSFTNGP12.phx.gbl...
> What on earth does "doesn't work" mean? Did you bother trying more than
one
> or trying to diagnose/troubleshoot?
>
> http://www.aspfaq.com/2189
>
>
> "Martin" <martinsm@freenet.de> wrote in message
> news:%23Vc$4XNpFHA.1444@TK2MSFTNGP10.phx.gbl...
>
>
| |
| Aaron Bertrand [SQL Server MVP] 2005-08-19, 4:12 pm |
| You can usually access the form collection using the object. E.g. with
aspUpload, you say:
Set UploadObject = CreateObject("...progID...")
Then you can say:
Response.Write UploadObject.Form("itemName")
' instead of
' Response.Write Request.Form("itemName")
I have not used aspfreeupload, and I can't imagine there are a ton of people
here who have, so you may be out of luck for a direct solution unless you
try with the people who wrote the script.
Or you can try one of the other objects/scripts offered in the link I
posted.
Basically, it comes down to this. If you send binary, then everything is
hunked into the binary stream, and you can not access the text stream
individually, you must have some way to separate the parts that have been
glommed together.
"Martin" <martinsm@freenet.de> wrote in message
news:OG2k$jNpFHA.2952@TK2MSFTNGP15.phx.gbl...
> thanks,
>
> but the code ist very complex, otherwise I cannot simply debug ASP code.
> But
> when you can help me....
>
> The Error message is following:
> 006~ASP 0206~BinaryRead can not be called after using collection
> Request.form...
>
> I can understand the message, but with the demo of freeaspupload, the
> collection Request.form.. was used (called) too. I have not modified the
> original Upload class.
>
> Thanks
>
>
> "Aaron Bertrand [SQL Server MVP]" <ten.xoc@dnartreb.noraa> schrieb im
> Newsbeitrag news:OMGaHZNpFHA.1204@TK2MSFTNGP12.phx.gbl...
> one
>
>
| |
| Martin 2005-08-19, 9:55 pm |
| OK, thanks
"Aaron Bertrand [SQL Server MVP]" <ten.xoc@dnartreb.noraa> schrieb im
Newsbeitrag news:#Wcnp0OpFHA.3316@TK2MSFTNGP14.phx.gbl...
> You can usually access the form collection using the object. E.g. with
> aspUpload, you say:
>
> Set UploadObject = CreateObject("...progID...")
>
> Then you can say:
>
> Response.Write UploadObject.Form("itemName")
> ' instead of
> ' Response.Write Request.Form("itemName")
>
> I have not used aspfreeupload, and I can't imagine there are a ton of
people
> here who have, so you may be out of luck for a direct solution unless you
> try with the people who wrote the script.
>
> Or you can try one of the other objects/scripts offered in the link I
> posted.
>
> Basically, it comes down to this. If you send binary, then everything is
> hunked into the binary stream, and you can not access the text stream
> individually, you must have some way to separate the parts that have been
> glommed together.
>
>
>
>
>
> "Martin" <martinsm@freenet.de> wrote in message
> news:OG2k$jNpFHA.2952@TK2MSFTNGP15.phx.gbl...
than[color=darkred]
it[color=darkred]
>
>
|
|
|
|
|