Welcome Guest! You need to login or register to make posts.

Notification

Icon
Error

Options
Go to last post Go to first unread
sisank  
#1 Posted : Friday, April 23, 2004 4:58:00 AM(UTC)
sisank

Rank: Member

Groups: Member
Joined: 4/23/2004(UTC)
Posts: 4

Hello,

I don't know what to say, but this is one hell (..sorry) of product I have seen so far. Kudos to Developer Team. Currently testing the evaluation version. I have tried to upload 4MB of files from different (5+) locations at same time. It worked like charm.

I would like to ask u 3 questions.

1. Can I set the Default folder as "ex: C:\Temp", so that the user will see all the files under c:\temp as soon as he open the site ?

2. Can I take backup of files before uploading to Server. If so How set the backup path ?

3. Can I delete files from users PC after uploading to the Server ?.

Once again, Kudos to Developer Team

SiSank

Andrew  
#2 Posted : Friday, April 23, 2004 12:24:00 PM(UTC)
Andrew

Rank: Advanced Member

Groups: Member, Administration
Joined: 8/2/2003(UTC)
Posts: 876

Thanks: 2 times
Was thanked: 27 time(s) in 27 post(s)
> I don't know what to say, but this is one h*ll (..sorry) of product I have seen so far. Kudos to Developer Team. Currently testing the evaluation version. I have tried to upload 4MB of files from different (5+) locations at same time. It worked like charm.

Thank you :)

> 1. Can I set the Default folder as "ex: C:\Temp", so that the user will see all the files under c:\temp as soon as he open the site ?

No, Image Uploader does not allow this. It can remember last visited folder though, so if user always uploads files from the same location, he need to navigate this folder once. In the next times Image Uploader will be opened on this folder.

> 2. Can I take backup of files before uploading to Server. If so How set the backup path ?

What do you mean under "backup"? As it does not change anything in the uploaded files it does not seem to make sense to do a backup...

> 3. Can I delete files from users PC after uploading to the Server ?.

You can use ShowDeleteButton property to enable "Delete" button. So user can just click "Delete" after files are uploaded. Use this code for this:

Code:
<param name="ShowDeleteButton" value="True">
<param name="UncheckUploadedFiles" value="False">

If you have any other question, please feel free to post a message here.

Edited by user Wednesday, February 13, 2008 3:34:19 PM(UTC)  | Reason: Not specified

sisank  
#3 Posted : Saturday, April 24, 2004 6:30:00 AM(UTC)
sisank

Rank: Member

Groups: Member
Joined: 4/23/2004(UTC)
Posts: 4

Andrew,

I appreciate your quick response.

Reg Q2, My clients upload files from same folder everytime. So I thought of including the functionality to delete files automatically after uploading to the server. Since ImageUploder doesn't support automatic delete I don't need to worry about taking Backup of files. Pls ignore my Q2.

Again, Thank you for your reply.

Fedor  
#4 Posted : Wednesday, February 13, 2008 3:47:13 PM(UTC)
Fedor

Rank: Advanced Member

Groups: Member, Administration, Moderator
Joined: 7/28/2003(UTC)
Posts: 1,660

Thanks: 5 times
Was thanked: 76 time(s) in 74 post(s)
========================================================

02/14/2008, Fedor

This topic is out of date.

Quote:
> 1. Can I set the Default folder as "ex: C:\Temp", so that the user will see all the files under c:\temp as soon as he open the site ?

No, Image Uploader does not allow this. It can remember last visited folder though, so if user always uploads files from the same location, he need to navigate this folder once. In the next times Image Uploader will be opened on this folder.

You can use ImageUploader.GoToFolder method to achieve it.

Code:
var iu = new ImageUploaderWriter("ImageUploader1", 650, 450);

//...params...
//...other event listeners...
iu.addEventListener("InitComplete", "ImageUploader1_InitComplete");
//...other event listeners...

iu.writeHtml();


function ImageUploader1_InitComplete() {
    getImageUploader("ImageUploaderID").GoToFolder("C:\Temp\");
}

Quote:
<param name="ShowDeleteButton" value="True">

<param name="UncheckUploadedFiles" value="False">

You should use iuembed.js syntax now. Also ShowDeleteButton property was removed. You should set non-empty string value to ButtonDeleteFilesText property to show the button.

Code:
<script type="text/javascript" src="iuembed.js"></script>
<script type="text/javascript">
var iu = new ImageUploaderWriter("ImageUploaderID", 610, 500);
//...other params...
iu.addParam("UncheckUploadedFiles", "true");
iu.addParam("ButtonDeleteFilesText", "Delete Files");
//...other params...
iu.writeHtml();
</script>

========================================================

Edited by user Wednesday, October 29, 2008 2:13:16 PM(UTC)  | Reason: Not specified

Best regards,

Fedor Skvortsov

Users browsing this topic
Guest
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.