|
Search
You searched for the word(s): IE 9 upload
Showing page 72 of 656 (6,557 total posts)
< 1 second(s)
-
Dear msandwisch,
task.FileName is the file name of uploaded file:
function CuteWebUI_AjaxUploader_OnTaskComplete(task)
{
var div=document.createElement(''DIV'');
var link=document.createElement(''A'');
link.setAttribute(''href'',''savefiles/''+task.FileName);
...
-
johansec:
It works fine with Silverlight disabled? Is there a way to figure out why it doesn't work with Silverlight?
johansec,
We are investigating this issue.
The problem is we cannot reproduce this issue in our end.
Is your site online?
If so, can you set up FTP access to your server ...
-
You need to implement your own methods based on your project to detect the current user security role, GetSecurityRoleFromYourAPP will return user role:
string userrole= GetSecurityRoleFromYourAPP();
switch(userrole)
{
case ...
-
Please test the following code and check whether it is what you need,
<?php require_once ''phpuploader/include_phpuploader.php'' ?>
<?php session_start(); ?>
<!DOCTYPE html PUBLIC ''-//W3C//DTD XHTML 1.0 Strict//EN'' ''http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd''>
<html ...
-
Jaganr012:
Hi,
Thanks for your reply.
I want to select multiple multiple photos and also I have to save those selected photos to a folder in root directory.Photos should be added in the root directory only when the user clicks on the Add button which is kept below the ''CuteWebUI:UploadAttachments'' ...
-
Hi
You must move the file before processing it.
And moving the file, is not a problem, I think.
void Uploader_FileUploaded(object sender, UploaderEventArgs args)
{
string folder = Server.MapPath(''~/MyFiles'');
string savepath = System.IO.Path.Combine(folder, ...
-
>> it because our application is not Ajax enabled?
This issue is not related to ajax at all.
Can you try the following code?
<%@ Page language=''c#''%>
<%@ Register Namespace=''CuteWebUI'' Assembly=''CuteWebUI.AjaxUploader'' TagPrefix=''CuteWebUI'' %>
<html> ...
-
Hi basam,
Do you use IIS6 on the Local machine? If so, please try this way:
Solutions:
1, turn off the IIS service .
2, Open the file 'metabase.xml (windows \ system32 \ inetsrv \ )
3, Navigate to ASPMaxRequestEntityAllowed section and modify to 10240000(10M), default: 204800, that is: 200K.
4, save, and then ...
-
Zapotec,
I know you mean.
But in your situation, CuteEditor can't set the max fize for /Uploads folder.
Maybe this work-around may help:
/Uploads/ <-- This is the path set ...
-
Been debugging the uploading routine of CuteEditor a bit.
The problem is situated in this routine:
For nIndex = 1 to LenB(FileData) oFile.Write Chr(AscB(MidB(FileData,nIndex,1))) <-----Next
When I retrieve the ''Set oFile = oFS.CreateTextFile(sPath & FileName, True)'' path from ...
... 72 ...
|
|
|