|
Search
You searched for the word(s): Ajax Uploader
Showing page 45 of 117 (1,163 total posts)
< 1 second(s)
-
Rushi ,
After the files be uploaded , the uploader will fire a javascript OnPostback event , and then post back the form
So the page will refresh , or the content will refresh if you using MS-Ajax .
If you do not want the modal popup UI be refreshed , you need handle the OnPostback event.
Please check this ...
-
I am using asp.net membership for security. Do you have any documentation/tips on how to tie the uploader in with membership in order to populate the userid fields in the tables with the current logged in user?
Currently the application uploads all files as 'Guest' (userid = 1).
Thanks for your assistance.
Ed
-
Hi Eric,
My upload code is part of a large web site. I couldn't post it all here, but I'll try to paste the pertinent sections (hope this helps):
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
ShowUserInfo()
InitializeUploadControl()
ImportClientSideLibraries()
If Not ...
-
Greg ,
1 - when the file be uploaded , it will do the postback , and fire the FileUploaded event.
if your page use MSAJAX, it will be a AJAX postback , otherwise it will be a FORM postback.
you can use javascript to catch the PostBack event http://ajaxuploader.com/document/scr/JavaScript-API.htm
2 - Uploader ...
-
Hi all,
Please download the last version.
Now uploader provide 3 new javascript event , here is an example for it ...
-
Hi,
If you already has a file, you can use this to create a Stream object :
using System.IO;
Stream s=new FileStream(filepath,FileMode.Open,FileAccess.Read,FileShare.Read);
For advanced usage, you can check the (in the downloaded zip ...
-
Thanks Adam.
I did not realize you only wanted the value of ''path'' filled in for the line:
args.CopyTo(path)
The example is now working correctly.
Regards,
Arlan
-
HI Tonny,
Can you try demo page http://www.ajaxuploader.com/Demo/select-multiple-files-upload.aspx? Does it work for you? I have tried on my windows 8.1 with IE11, it works fine.
Regards,
Ken
-
ramkumarhighbrow,
Ajax Uploader has no problems with post back.
Please check the following example:
http://ajaxuploader.com/demo/select-multiple-files-upload.aspx
For your issue, please create an aspx page showing the problems and send it to kenneth@cutesoft.net.
-
Okay here's the complete detail on what we want to achieve. After the user tries to upload their document using the ajax uploader, we will use Microsoft's DSOFile (http://suppot.micosoft.com/kb/224351) that let's you read document properties (Author, Title...etc) to check if the document/file properties has been filled out correctlly.
Our ...
... 45 ...
|
|
|