日期:2014-05-17  浏览次数:20671 次

MVC3 inputfile 坑爹问题
 @using (Html.BeginForm("Execel", "UserInfo", FormMethod.Post, new { enctype = "multipart/form-data" }))
              {
。。。
<input type="file" id="excel" name="excel" style="width:300px"/>
。。。

------------------------------------
Controll里面是
  string fileName = Request.Files["excel"].FileName;

本地毫无压力。。但是放在服务器上。进行上传会抛出异常。
数据绑定Excel失败。失败原因:&#39;c:\\...文件路径....&#39;不是一个有效路径。后来发现。那个URL里面除了路径是GB2312的。其他都是UTF-8的。。但是我本身页面都是
 <meta http-equiv="Content-Type" content="text/html; charset=gb2312"/>的怎么整?
------解决方案--------------------
学习学习