See other apps
See source code
Try our Cloud API

Excel to Form Converter - Create Forms Instantly

Transform Your Excel Sheets into Interactive Forms with These Tools

Powered by aspose.com & aspose.cloud
Enter Url Enter Url

*By uploading your files or using our service you agree with our Terms of Service & Privacy Policy

Password

Tutorial

How to save data and download html file
const datas = exportModifiedCellInfo();
const template = `your template name`;
const url = `your API address`;

AjaxHelper.authenticatedRequest({
    method: 'POST',
    url: url,
    data: JSON.stringify(datas),
    contentType: 'application/json',
    cache: false,
    success: successFn,
    error: errorFn
});