无法读取Excel文件

时间:2016-05-26 11:40:09

标签: asp.net-mvc excel

我得到了一位同事的Excel文件,我认为该文件保护了它,因为它包含PII数据。但是,我可以使用Excel打开它而没有问题,但当我尝试在我的ASP.NET应用程序中打开它时,我被告知我没有权限,应该联系所有者或系统管理员。

简单视图:

 @using (Html.BeginForm("Upload", "Home", FormMethod.Post, new { enctype = "multipart/form-data" }))
{
<table>
    <tr>
        <td>File:</td>
        <td>
            <input type="file" name="UploadedFile" />
        </td>
    </tr>
    <tr>
        <td colspan="2">
            <input type="submit" name="Submit" value="Submit" class="displaybutton" style="font-size:x-small;"/>
        </td>
    </tr>
</table>
 }

有没有解决这个问题?enter image description here

0 个答案:

没有答案