|
|
 |
Re: FN-FORUM: .NET image upload component
date posted 10th October 2007 13:17
Craig wrote:
> Hi,
>
> I'm doing my first .NET VB 1.1 image upload facility. (I've done a few in
> classic asp). I was wondering if anyone has a favourite component they like
> to use for this task. I need to be able to check the image dimensions and
> maybe (just maybe) create a thumbnail at the same time.
>
> Ones I've seen so far Googleing seem rather expensive.
>
It's all right there in the .net runtime, so you probably can just use that.
If you use a HtmlInputFile for your form field you can just pick it up
using "PostedFile" and then do whatever manipulations you want with
System.Drawing stuff.
.net is so endlessly more powerful than old fashioned vbscript you'll
find that there is a vast amount of stuff that is just built in to the
runtime now that doesn't really have any old asp alternative.
Part of why I've been referring to old fashioned asp as a dead platform
since 2002...
-ben
|
 |
|