Hey guys,
I have the Kendo stuff setup with Visual Studio 2012 and MVC 4 and everything seems to be working OK. However, the upload functionality is not working as expected. See the attached image for more details. It doesn't matter where in the application I place the upload, I get the same results. However, if I create a project from the Kendo project template the Upload piece works and I do not get the repeated items placed into the page. More than anything I need to know what I am missing.
Thanks!
<div>
@
using
(Html.BeginForm(
"UploadFile"
,
"Home"
, FormMethod.Post,
new
{ id =
"uploadForm"
+ item.CorrespondenceId.ToString(), enctype =
"multipart/form-data"
})){
@(Html.Kendo().Upload()
.Name(
"files"
).Multiple(
true
)
)
<p>
<input type=
"submit"
value=
"Submit"
class
=
"k-button"
/>
</p>
}
</div>