我需要更新一个Excel文件。我有这个用于读取文件:
main
// all props from above
--nav-position-top: 15px
padding-top: var(--nav-position-top)
nav
position: sticky
top: var(--nav-position-top)
我的文件格式:
public void Ctrl_Jobs(HttpPostedFileBase file, LoadExcelViewModel model) {
Stream XLS = file.InputStream;
using (var reader = ExcelReaderFactory.CreateOpenXmlReader(XLS)) {
VMxls.Description = reader.GetString(1);
}
}
然后在更新中,格式为下一个:
[Employees]
[Name] [job]
Mike Pilot
Goku Warrior