Hi, How can i use a RadUpload in to RadAjaxpanel and uploaded files without the page is refreshed?
In the following code, when i click on the Submit button, the page is not refreshed but the file is not uploaded. Who can i do it to upload file without the page is refreshed?
<telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server" Height="152px"
Width="300px" HorizontalAlign="NotSet">
<telerik:RadUpload ID="RadUpload1" runat="server"
AllowedFileExtensions=".jpg,.jpeg,.bmp,.gif"
ControlObjectsVisibility="ClearButtons" MaxFileInputsCount="1" MaxFileSize="1000000"
Skin="Vista" TargetFolder="~/Files" />
<hr />
<asp:Button ID="Button1" runat="server" Text="Submit" onclick="Button1_Click" />
</telerik:RadAjaxPanel>