Buying an upload component

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Chris Barber

    #31
    Re: Buying an upload component

    [re: wives] that's how I found mine!

    She started cleaning three minutes after getting into my rented house and I
    thought to myself 'that's the woman for me'. Joking of course, my wife is
    amazing and even puts up with me tapping away at 2am in the morning if
    something grabs me.

    Chris.

    "Jeff Cochran" <jcochran.nospa m@naplesgov.com > wrote in message
    news:3f9b7384.6 04256835@msnews .microsoft.com. ..[color=blue]
    >NB: I was following this thread since I've never done uploads but I'd like
    >to in the near future and I thought I might learn something. However, it
    >looks like I'll just have to get hold of them all and have a go myself to
    >see what's best for me - probably a component, not for speed, but for speed
    >and ease of development.[/color]

    That's really the key, finding what works for you. In some cases, we
    use the absolute worst product for the job simply because we're
    comfortable programming with it. In my case, I usually test the first
    component I find, if I can understand it and comfortably work with it
    within three minutes, I don't normally look at the next one.
    Sometimes it takes a few tries, sometimes you get lucky right out of
    the gate. But you would never get anything productive done if you
    agonized over every choice you made and examined all the what-if's
    involved.

    Works the same with wives... :)

    Jeff


    Comment

    • Chris Barber

      #32
      Re: Buying an upload component

      Ahh! the joys of letting other people make your decisions for you :)

      LoL.

      Seriously, Dundas [free], ASPUpload [relatively expensive], and my
      favourite ABCUpload (http://www.websupergoo.com/products.htm) all seem to
      get good reviews. I like the Web Supergoo components, I've used a few of
      them (especially the PDF one) and the support is very good. I detected a
      memory leak in the PDF component and they had a fix out without 48 hours so
      I was pretty impressed.

      Quote from Supergoo website:

      ABCUpload ASP is normally priced at $149. However as a special offer we'll
      give you a free license key - all you have to do is link back to our web
      site. For full details check out our link guidelines...

      Sounds interesting if you can give them the link back.

      Chris.

      "Ray at <%=sLocation% >" <myfirstname at lane34 dot com> wrote in message
      news:uZkyojJmDH A.2364@TK2MSFTN GP11.phx.gbl...
      I posted so I wouldn't have to test 900 different options. Damn you all!
      :P

      Ray at work

      "CJM" <cjmwork@yahoo. co.uk> wrote in message
      news:ehW45MImDH A.2820@TK2MSFTN GP10.phx.gbl...[color=blue]
      > Now that the 'debate' has started, Ray... How about posting us your[/color]
      findings[color=blue]
      > when you have tried a few options?
      >
      > Cheers
      >
      > Chris
      >
      >[/color]



      Comment

      • Antonin Foller

        #33
        Re: Buying an upload component

        Hi, Fred
        Oh, I'm sorry, some old info on my web-site.

        Pure-ASP upload v 2.0 has very improoved performance - it can upload up
        to 100th of megabytes and its performance is on ~30-40% of best-component
        performance (Huge-ASP upload, of course :-). So the info about 100kB and
        exceptionally MB is very old. I must change it.

        Most of public pure-asp upload scripts and VBA components (each of?)
        have some bad algorithms - request.BinaryR ead(request.Tot alBytes) - one
        block reading, and single byte-to-char conversions when storing files on
        server-side. Consumed processor time depends by square on source file/form
        size, so upload limit is on megabytes, depending on processor performance.

        Pure-ASP 2.0 upload has block-by-block algorithm to read source data and
        has NO single byte-to-char conversions. So its performance depends linearly
        on source data size and the performance is really exciting for big files
        (100th megabytes or 20% of a free memory is a limit, 10th of megabytes
        without problems).

        Antonin, Author of PureASP and HugeASP upload.
        About Motobit Software company. Contact and technical info, email and postal address, history, customers.



        "Fred Jones" <fredjones76@ho tmail.com> wrote in message
        news:O904vfBmDH A.2272@tk2msftn gp13.phx.gbl...
        [color=blue]
        > http://www.pstruh.cz/help/scptutl/pa33.htm#hugepure
        > Notice this section...
        >
        > "Pure-ASP upload is a VBS script, which uses only default IIS/windows
        > scripting objects - Scripting and ADODB library. So you do not need to
        > install any additional software. But the Pure-VBS code has also
        > Pure-Performance and it is very hungry for system resources - memory and
        > processor resources. The code has one more great characteristic - it is[/color]
        free[color=blue]
        > to use. You can use Pure-ASP upload when
        > - you need upload only small files (up to 100kB, exceptionally 1-2MB)
        > - your provider does not enable to install external components
        > - you have small number of concurrent uploads
        > Huge-ASP upload is a high-performance, low resources C++ component
        > with unique algorithm. The component is designed to accept forms of any[/color]
        size[color=blue]
        > (from bytes to gigabytes) with maximum eficiency. Please use Huge-ASP[/color]
        upload[color=blue]
        > in any other case."
        >
        >
        > Here is some additional info from another sites perspective.
        > http://developerfusion.com/show/1615/1/
        >
        > Anybody with half a brain knows a good component based upload component[/color]
        can[color=blue]
        > totally outperform a purely script based solution.
        >
        > Fact is...
        >
        > People with attitudes like you have do more harm than good in these
        > newsgroups and discourage a lot of people from even coming back to the
        > newsgroups for assistance. To your credit the ASPFAQ site is a great
        > resource despite how biased you are on certain subjects.
        >
        >[/color]


        Comment

        Working...