我使用EPPlus生成了OpenXml格式的Excel电子表格。当我尝试使用Aspose.Cells打开它时,程序返回以下错误:
Aspose.Cells.CellsException:“无效的单元格名称”
我相信单元格找不到正确的文件格式。
如何打开此文件?
我正在使用C#和.NET Core
谢谢
答案 0 :(得分:0)
我是Aspose的Ahsan Iqbal。
我已经用自己的示例代码测试了此问题,但未复制此问题。
function validateSearchInput() {
let searchBoxValue = document.getElementById('search-box').value
let lettersOnlyPattern = (/^[a-zA-Z ]+$/);
try {
if (!lettersOnlyPattern.test(searchBoxValue)) {
alert('this will pop-up');
throw new Error('Please enter letters only');
}
location.href = "country.html";
} catch (e) {
console.log(e.message);
}
}
此测试表明Aspose.Cells可以读取EPPlus生成的Excel电子表格。分析需要使用示例代码和输出文件。您可以在Aspose.Cells Forum创建一个线程,并共享您的代码,输出XLSX文件,Aspose.Cells和.NET Core的版本,操作系统以及其他特定的环境信息(如果有)。我们的支持团队将在这方面为您提供进一步的帮助。