Posted on 9/10/2008 9:40:51 PM
in #.NET
I want to start adding video tutorials to my blog in order to make it a bit more interesting and fun.
My first video will be a short movie of how to use Flajaxian file uploader. The topics covered in this video are:
- What is Flajaxian FileUploader?
- How to get it?
- How to add it to a web site?
- How to add adapter to save the files?
- How to add adapter to create thumbnails for the images?
Video content presented here requires JavaScript to be enabled and the latest version of the Adobe Flash Player. If you are you using a browser with JavaScript disabled please enable it now. Otherwise, please update your version of the free Adobe Flash Player by downloading here.
Share this post:
digg
Stumble Upon
del.icio.us
Technorati
E-mail
|
Posted on 11/10/2008 5:34:37 AM
I am going to fileuploader
|
Posted on 12/3/2008 3:04:20 PM
|
Posted on 2/5/2009 4:41:07 AM
This is a great File Uploader !!! Easy to use
Keep up the great work
|
Posted on 2/17/2009 1:27:21 PM
Looks great. What is the maximum filesize it can handle?
|
Posted on 2/17/2009 2:07:24 PM
The limitations of the file size are defined on the IIS side. You can read more about that here: http://www.flajaxian.com/flajaxian.com/FileUploader2.0Help.html#RequestLimitations
|
Posted on 3/23/2009 10:38:56 AM
how can i extract uploaded files?
|
Posted on 4/7/2009 9:44:08 AM
Hi, I add this solution for the upload multiple files but I put in a SmartPart for sharepoint and I can´t make it work.
When the site is opening send me an error message 'Cant load the file or assambly 'com.flajaxian.FileUploader' or some of dependency. The sistem can´t found the especified file.'
Are there some especifications for use this DLL with webparts or smartparts?
thanks and regards.
|
Posted on 4/20/2009 11:56:19 AM
I like the control. There are some problems though, but for most uses it is perfect. The css layout is all a bit crazy in a modalPopupExtender from the AjaxToolKit. And trying to get the modalPopupExtender to close programatically after an upload throws a few javascript errors, which it doesn't in MPEs not containing the uploader. Thanks though. It is a good control.
|
Posted on 5/21/2009 12:39:01 AM
hi
how can i download one file ? no multifile ?
Thanks
|
Posted on 5/21/2009 10:41:23 AM
|
Posted on 7/20/2009 8:23:22 AM
Can I change the name of the uploaded files if I use FileSaverAdapter.
|
Posted on 7/20/2009 9:21:26 AM
Yes you can, like this
<script runat="server">
protected void FileNameDetermining(object sender, FileNameDeterminingEventArgs args)
{
args.FileName = "NewName.jpg";
}
</script>
<fjx:FileUploader ID="FileUploader1" runat="server">
<Adapters>
<fjx:FileSaverAdapter Runat="server" FolderName="UploadFolder"
OnFileNameDetermining="FileNameDetermining" />
</Adapters>
</fjx:FileUploader>
and please if you have further questions post them at http://flajaxianfileupload.codeplex.com/Thread/List.aspx
|
Posted on 8/20/2009 9:36:08 AM
Vladimir, this is a great control. I'm interested in doing some customization, following your instructions at http://www.flajaxian.com/flajaxian.com/FileUploader2.0Help.html. However, when you mention "In the source of the project in images folder you can find alternative buttons," I'm lost. All I was able to download was the DLL. Where can I get the source code that you refer to?
Thank you very much for your help.
|
Posted on 8/20/2009 11:34:15 AM
|
Posted on 12/8/2009 1:58:26 AM
I have tried and working fine most of the time. Some time getting problem for flash hanging. when i am trying to upload again and again the this is happening.
In my testing I have tried with 1GB file also some times just few KB files.
Please fix this problem.
Suman
|
Posted on 12/8/2009 9:27:57 AM
I don't know what the problem is, use Fiddler to find out, most likely you have some sort of update panel that reloads the flash html - this is not allowed! Move it away from the panel.
|
Posted on 5/8/2010 4:06:21 AM
|
Posted on 5/23/2010 11:10:14 PM
great article, very helpful and informative. I really needed this for my collage class.
|