This is a migrated thread and some comments may be shown as answers.

RadUpload won't upload large images

1 Answer 48 Views
Upload (Obsolete)
This is a migrated thread and some comments may be shown as answers.
Mark
Top achievements
Rank 1
Mark asked on 29 Apr 2010, 05:21 PM
I have the following RadUpload control as shown below. This quite happily displays normal images, however when I select a very large high resolution image (5.2mb) the page just crashes with an unhandled error, any ideas what may be going wrong here.

Regards

Robert

     <telerik:RadUpload ID="RadUpload1" runat="server" Culture="English (United Kingdom)"
                            MaxFileInputsCount="3" OnFileExists="RadUpload1_FileExists1" OverwriteExistingFiles="True"
                                TargetFolder="~/TempUploadImages" Width="325px" ControlObjectsVisibility="None" Height="36px">
                                </telerik:RadUpload>
                             <asp:Button ID="btn_Upload" runat="server" OnClick="btn_Upload_Click" Text="Upload" />
    
        </td>

code behind

   try
        {
            if (RadUpload1.UploadedFiles.Count > 0)
            {
                repeaterResults.DataSource = RadUpload1.UploadedFiles;
                repeaterResults.DataBind();
                labelNoResults.Visible = false;
                repeaterResults.Visible = true;
                LoadImageUrl();

            }
            else
            {
                labelNoResults.Visible = true;
                repeaterResults.Visible = false;
            }
        }
        catch (Exception ex)
        {
            //throw new Exception(ex.InnerException);

        }



1 Answer, 1 is accepted

Sort by
0
Yana
Telerik team
answered on 30 Apr 2010, 09:09 AM
Hi Robert,

Please check this help article for more information about this issue.

Best wishes,
Yana
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
Tags
Upload (Obsolete)
Asked by
Mark
Top achievements
Rank 1
Answers by
Yana
Telerik team
Share this question
or