Hello,
I am using Rad Ajax controls version 2011.2.915. Whenever a user running Windows XP and IE 7 tries to upload a file from My Documents or another network location they get prompted with a windows credential box. If they enter their credentials IE 7 locks up.
The RadAsyncUpload works fine in windows 7 IE8. If the IE 7 users try a file from their C drive, that functions correctly as well.
I have tried to allow Anonymous Access to the website in IIS (5) but this does not make a difference. Placing these lines of Javascript before the upload control also do not help.
How do I either disable the flash and silverlight, or how do I fix the permissions problem?
Here is how I am using the uploader in a RadGrid, once as an attachment column for inserting, and once as a control in a template column for editing.
Thanks
I am using Rad Ajax controls version 2011.2.915. Whenever a user running Windows XP and IE 7 tries to upload a file from My Documents or another network location they get prompted with a windows credential box. If they enter their credentials IE 7 locks up.
The RadAsyncUpload works fine in windows 7 IE8. If the IE 7 users try a file from their C drive, that functions correctly as well.
I have tried to allow Anonymous Access to the website in IIS (5) but this does not make a difference. Placing these lines of Javascript before the upload control also do not help.
<script type="text/javascript">
if (Telerik.Web.UI.RadAsyncUpload != null && Telerik.Web.UI.RadAsyncUpload.Modules != null) {
Telerik.Web.UI.RadAsyncUpload.Modules.Flash.isAvailable = function() { return false; };
Telerik.Web.UI.RadAsyncUpload.Modules.Silverlight.isAvailable = function() { return false; };
}
</script>
How do I either disable the flash and silverlight, or how do I fix the permissions problem?
Here is how I am using the uploader in a RadGrid, once as an attachment column for inserting, and once as a control in a template column for editing.
<telerik:GridAttachmentColumn AttachmentDataField="Data" FileName="Name" FileNameTextField="Name" HeaderText="View Attachment" UniqueName="Data" DataTextField="Name" AttachmentKeyFields="FormSequenceNr" EditFormHeaderTextFormat=""> </telerik:GridAttachmentColumn> <telerik:GridTemplateColumn HeaderText="File" DataField="Name" FilterControlAltText="Filter TemplateColumn column" UniqueName="Name"> <ItemTemplate> <asp:Label runat="server" ID="lblName" Text='<%# Eval("Name") %>' /> </ItemTemplate> <EditItemTemplate> <telerik:RadAsyncUpload runat="server" ID="AsyncUpload1" OnClientFileUploaded="OnClientFileUploaded" OnValidatingFile="RadAsyncUpload1_ValidatingFile"> </telerik:RadAsyncUpload> </EditItemTemplate> </telerik:GridTemplateColumn>Thanks