This question is locked. New answers and comments are not allowed.
I have the following VB.NET code on my page. I am working with version 2011.2.712. Everything is working properly except it is allowing multiple files to be uploaded. Is this a bug or am I missing something?
@(Html.Telerik().Upload() _ .Name("uploadFiles") _ .Multiple(False) _ .Async(Sub(async) async.Save("MyAction", "MyController").AutoUpload(True)) _ .ClientEvents(Sub(ce) ce.OnSuccess("onUploadSuccess").OnUpload("onUploadStarted")))