I want to upload an excel file in asp.net mvc3.0. How can I upload the file using html input file control.
feedback
|
|
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 a an HTML form which would contain a file input:
and then you would have a controller to handle the upload:
| |||||||||||||||||
feedback
|
|
to transfer to byte[] (e.g. for saving to DB):
| |||||
feedback
|
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.