Hi,
i'm trying radasyncupload but when start the code, seems to proceed with the transfer but then I see the remote folder and there is no file.
My code is:
but I have to configure something else?
i'm trying radasyncupload but when start the code, seems to proceed with the transfer but then I see the remote folder and there is no file.
My code is:
but I have to configure something else?
<
body
>
<
form
id
=
"form1"
runat
=
"server"
>
<
telerik:RadScriptManager
ID
=
"RadScriptManager1"
runat
=
"server"
>
<
Scripts
>
<
asp:ScriptReference
Assembly
=
"Telerik.Web.UI"
Name
=
"Telerik.Web.UI.Common.Core.js"
>
</
asp:ScriptReference
>
<
asp:ScriptReference
Assembly
=
"Telerik.Web.UI"
Name
=
"Telerik.Web.UI.Common.jQuery.js"
>
</
asp:ScriptReference
>
<
asp:ScriptReference
Assembly
=
"Telerik.Web.UI"
Name
=
"Telerik.Web.UI.Common.jQueryInclude.js"
>
</
asp:ScriptReference
>
</
Scripts
>
</
telerik:RadScriptManager
>
<
telerik:RadNotification
ID
=
"RadNotification1"
runat
=
"server"
Skin
=
"Office2010Silver"
>
</
telerik:RadNotification
>
<
div
>
<
telerik:RadCodeBlock
ID
=
"RadCodeBlock1"
runat
=
"server"
>
<
script
type
=
"text/javascript"
>
function startManualUpload() {
var upload = $find('<%=RadAsyncUpload1.ClientID%>');
upload.startUpload();
}
</
script
>
</
telerik:RadCodeBlock
>
<
telerik:RadAsyncUpload
ID
=
"RadAsyncUpload1"
runat
=
"server"
Culture
=
"it-IT"
Skin
=
"Sunset"
ManualUpload
=
"true"
TargetFolder
=
"public/image_profile"
>
</
telerik:RadAsyncUpload
>
<
input
type
=
"button"
onclick
=
"startManualUpload()"
value
=
"start upload"
/>
</
div
>
</
form
>
</
body
>