Hi,
I have used Rad Uplaod control in my web application developed using Visual Studio 2005. However i am not able to view the progress details such as progress percentage, estimated time.. etc. I tried uploading files of size 6 MB.
Please let me now whether the upload control will automatically display the details or should i need to manually write code to display the required.
Thanks,
Divya
I have used Rad Uplaod control in my web application developed using Visual Studio 2005. However i am not able to view the progress details such as progress percentage, estimated time.. etc. I tried uploading files of size 6 MB.
Please let me now whether the upload control will automatically display the details or should i need to manually write code to display the required.
Thanks,
Divya
3 Answers, 1 is accepted
0

Cori
Top achievements
Rank 2
answered on 01 Nov 2010, 01:54 PM
Hello Divya,
Are you using the RadProgressArea? You can see how to use this control in this demo:
http://demos.telerik.com/aspnet-ajax/controls/examples/integration/raduploadinajaxifiedgrid/defaultcs.aspx?product=upload
You can see in the markup that it adds a RadProgressArea and RadProgressManager, to monitor the upload's progress.
I hope that helps.
Are you using the RadProgressArea? You can see how to use this control in this demo:
http://demos.telerik.com/aspnet-ajax/controls/examples/integration/raduploadinajaxifiedgrid/defaultcs.aspx?product=upload
You can see in the markup that it adds a RadProgressArea and RadProgressManager, to monitor the upload's progress.
I hope that helps.
0

Divya
Top achievements
Rank 1
answered on 02 Nov 2010, 05:37 AM
Hi,
Am already using the RadProgressArea and RadProgressManager, Still am not getting. Please find the code section below.
body>
<form id="form1" runat="server">
<telerik:RadScriptManager id="ScriptManager1" runat="server" EnablePageMethods="True" EnableScriptGlobalization="True" EnableScriptLocalization="True"></telerik:RadScriptManager>
<div id="uploadDiv" runat="server">
<div style="position: relative; float:left; top:0px; left:0px; ">
Maximum size per file: <%= RadUpload1.MaxFileSize /1024/1024%> MB.
<telerik:RadUpload
ID="RadUpload1"
runat="server"
Skin="Telerik"
InitialFileInputsCount="3"
MaxFileInputsCount="5"
MaxFileSize="10485760"
ReadOnlyFileInputs="true"
OnValidatingFile="RadUpload1_ValidatingFile"
CssClass="normalRemoveButton"
/>
</div>
<div style="clear: left; width:300px; position: relative; margin-top:20px;">
<asp:Button id="buttonSubmit" runat="server" CssClass="RadUploadSubmit" OnClientClick="return ValidateFileCount();" OnClick="buttonSubmit_Click" Text="Submit" />
<asp:Button id="finishButton" runat="server" CssClass="RadUploadSubmit" OnClientClick="CloseWindow();" Text="Cancel" />
</div>
</div>
<div id="uploadProgressDiv" runat="server" class="ruProgressModule">
<telerik:RadProgressManager ID="RadProgressManager1" runat="server"/>
<telerik:RadProgressArea ID="RadProgressArea1" runat="server" BackColor="White" EnableTheming="True" Skin="Outlook" >
</telerik:RadProgressArea>
</div>
</form>
</body>
Thanks,
Divya
Am already using the RadProgressArea and RadProgressManager, Still am not getting. Please find the code section below.
body>
<form id="form1" runat="server">
<telerik:RadScriptManager id="ScriptManager1" runat="server" EnablePageMethods="True" EnableScriptGlobalization="True" EnableScriptLocalization="True"></telerik:RadScriptManager>
<div id="uploadDiv" runat="server">
<div style="position: relative; float:left; top:0px; left:0px; ">
Maximum size per file: <%= RadUpload1.MaxFileSize /1024/1024%> MB.
<telerik:RadUpload
ID="RadUpload1"
runat="server"
Skin="Telerik"
InitialFileInputsCount="3"
MaxFileInputsCount="5"
MaxFileSize="10485760"
ReadOnlyFileInputs="true"
OnValidatingFile="RadUpload1_ValidatingFile"
CssClass="normalRemoveButton"
/>
</div>
<div style="clear: left; width:300px; position: relative; margin-top:20px;">
<asp:Button id="buttonSubmit" runat="server" CssClass="RadUploadSubmit" OnClientClick="return ValidateFileCount();" OnClick="buttonSubmit_Click" Text="Submit" />
<asp:Button id="finishButton" runat="server" CssClass="RadUploadSubmit" OnClientClick="CloseWindow();" Text="Cancel" />
</div>
</div>
<div id="uploadProgressDiv" runat="server" class="ruProgressModule">
<telerik:RadProgressManager ID="RadProgressManager1" runat="server"/>
<telerik:RadProgressArea ID="RadProgressArea1" runat="server" BackColor="White" EnableTheming="True" Skin="Outlook" >
</telerik:RadProgressArea>
</div>
</form>
</body>
Thanks,
Divya
0
Hello Divya,
Do you your tests on a localhost? If so, please have in mind that on a localhost the upload speed is extremely high, reachign 10-20 megabytes per second. This means that 6mb file is going to be uploaded in less that a second, i.e. before there is enough time for the area to appear. Try uploading file of size at least 50mb in order to see the area on a localhost.
All the best,
Genady Sergeev
the Telerik team
Do you your tests on a localhost? If so, please have in mind that on a localhost the upload speed is extremely high, reachign 10-20 megabytes per second. This means that 6mb file is going to be uploaded in less that a second, i.e. before there is enough time for the area to appear. Try uploading file of size at least 50mb in order to see the area on a localhost.
All the best,
Genady Sergeev
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