This question is locked. New answers and comments are not allowed.
Hi,
I am implementing the upload functionality using telerik MVC upload controls. When i select the document to upload nothing appears on the screen also the saveAttachment action method is not invoked in autoupload mode. I am using Internet Explorer 6
I am implementing the upload functionality using telerik MVC upload controls. When i select the document to upload nothing appears on the screen also the saveAttachment action method is not invoked in autoupload mode. I am using Internet Explorer 6
@{ Layout = null; } <!DOCTYPE html> <html> <head> <link href="@Url.Content("~/Content/Site.css")" rel="stylesheet" type="text/css" /> <script src="../../Scripts/jquery-1.4.4.min.js" type="text/javascript"></script> <script src="../../Scripts/jquery.validate.min.js" type="text/javascript"></script> <script src="../../Scripts/jquery.validate.unobtrusive.min.js" type="text/javascript"></script> @(Html.Telerik().StyleSheetRegistrar().DefaultGroup(group => group.Add("telerik.common.css").Add("telerik.Phonebank.css").Combined(true).Compress(true))) </head> <body> @(Html.Telerik().Upload().Name("temp") .Async(asy => asy.Save("SaveAttachments", "Call") .AutoUpload(true)) .Multiple(true)) </body> </html>