Hi
Like others in this forum I just can't get the progress area to show.
I have the simplest possible page:
The code behind is as recomended in the getting started docs
and I have followed the full getting started procedure to modify the web.config file.
The result is that the file is uploaded to the requisite folder, but the progress area is never visible.
There are no error messages, so I am stuck for knowing where to check for the problem.
Can you suggest where to start looking?
I really thought this was going be easier than writing a classic asp script ands using aspUpload
the old-fashioned way!
Thanks
Clive
Like others in this forum I just can't get the progress area to show.
I have the simplest possible page:
| <%@ Page Language="VB" AutoEventWireup="false" CodeFile="upload-test.aspx.vb" Inherits="admin_upload_test" %> |
| <%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
| <html xmlns="http://www.w3.org/1999/xhtml"> |
| <head runat="server"> |
| <title></title> |
| </head> |
| <body> |
| <form id="form1" runat="server"> |
| <div> |
| <telerik:RadScriptManager ID="RadScriptManager1" runat="server"> |
| </telerik:RadScriptManager> |
| <telerik:RadUpload ID="RadUpload1" runat="server" TargetFolder="~/sermons/" |
| Skin="Gray"> |
| </telerik:RadUpload> |
| <asp:button ID="button1" runat="server" Text="Submit" OnClick="button1_Click" /> |
| <telerik:RadProgressManager id="Radprogressmanager1" skin="Gray" runat="server" /> |
| <telerik:RadProgressArea id="RadProgressArea1" skin="Gray" runat="server" /> |
| </div> |
| </form> |
| </body> |
| </html> |
| Imports Telerik.Web.UI |
| Partial Class admin_upload_test |
| Inherits System.Web.UI.Page |
| Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click |
| If RadUpload1.UploadedFiles.Count > 0 Then |
| RadProgressArea1.Visible = True |
| System.Threading.Thread.Sleep(6000) |
| End If |
| End Sub |
| End Class |
and I have followed the full getting started procedure to modify the web.config file.
The result is that the file is uploaded to the requisite folder, but the progress area is never visible.
There are no error messages, so I am stuck for knowing where to check for the problem.
Can you suggest where to start looking?
I really thought this was going be easier than writing a classic asp script ands using aspUpload
the old-fashioned way!
Thanks
Clive