I want to upload an Excel file in ASP.NET MVC 3.0. How can I upload the file using html input file control?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You don't use a file input control. Server side controls are not used in ASP.NET MVC. Checkout the following blog post which illustrates how to achieve this in ASP.NET MVC. So you would start by creating an HTML form which would contain a file input:
and then you would have a controller to handle the upload:
|
|||||||||||||||||||||
|
|
to transfer to byte[] (e.g. for saving to DB):
|
|||||||||||||
|
|
in the view:
while the following code in the controller:
|
|||
|
|
protected by Community♦ Dec 2 '11 at 15:56
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.