找回密码
 立即注册

QQ登录

只需一步,快速开始

jeremylhj

银牌会员

6

主题

7

帖子

3594

积分

银牌会员

积分
3594

活字格认证

jeremylhj
银牌会员   /  发表于:2014-12-10 15:38  /   查看:4359  /  回复:1
FpSpread1.OpenExcel()函数客户端导入指定位置的excel会报错?有其他的方法吗,从客户端导入?

1 个回复

倒序浏览
iceman
社区贡献组   /  发表于:2014-12-10 16:35:00
沙发
回复 1楼jeremylhj的帖子

需要先上传Excel文件到服务器,关键代码:

  1.   protected void Button3_Click(object sender, EventArgs e)
  2.     {
  3.       HttpPostedFile file = Request.Files["myFile"];
  4.       if (file != null && file.ContentLength != 0)
  5.       {
  6.         string fname = Server.MapPath(Path.Combine("~/samples/ExcelCompatibility", Path.GetFileName(file.FileName)));
  7.         // post file to application folder first (to avoid "Error Opening File" exception since the file is being used also by browser)
  8.         file.SaveAs(fname);
  9.         // open the posted Excel file
  10.         OpenExcelFile(fname);
  11.       }
  12.     }
复制代码


Demo:
http://demos.componentone.com/sp ... ility/Overview.aspx
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 立即注册
返回顶部