怎样将html格式的table导成Execl
我现在想在已经生成查询出结果的html格式的table导入Execl的文件,请问怎么做? 
------解决方案--------------------一、 
  '导出到excel 
 Response.Clear  
 response.ContentType = "application/vnd.ms-excel " 
 Response.Addheader    "Content-Disposition ",  "attachment;Filename= " & projectName &  ".xls "    
   Response.Charset   =    "GB2312 "    
 二、 
 用javascript取得table的innerHTML,创建excel后,将值写入即可