.NET MVC: How to use .NET controls with MVC?
- by aximili
I am very new to MVC.
I've been learning to use plain HTML or HtmlHelpers, eg. for textbox, and get the value back in the Controller using Request.Form.
But how do I use .NET controls with MVC? (eg. FileUpload)
(The reason I ask is I am trying to use a custom control for uploading multiple files - it's Flajaxian File Uploader, if anyone knows about it.
It works with webforms, but I have no idea how this thing is gonna work with MVC.)
Thanks in advance