Can I ask if the Aspose Cells Cloud version will have this fix - CELLSNET-56593
We will fix the issue(CELLSNET-56593) on the 24.9 version of Cells Cloud.
The current version is 24.8.
Is there a planned date for the 24.9 update on the cloud version ?
Thank you
We will release Aspose.Cells Cloud v24.9 next week.
@infrastructure.scrib ,
We had been released Aspose.Cells Cloud v24.9.
Please refer to the following code section:
const string format = “html”;
var url = BuildUrl(string.Format(“convert?format={0}&CellNameAttribute=id”, format));
string bodyParam = null;
Dictionary<string, string> headParams = null;
Dictionary<string, object> formParams = new Dictionary<string, object>();
var stream = ReadFromFile(Book1Xlsx);
if (stream != null) formParams.Add(“Book1.xlsx”, ApiInvoker.ToFileInfo(stream, “File”));var response = ApiInvoker.InvokeApiAsync(url, “PUT”, bodyParam, headParams, formParams).Result;
Assert.IsNotNull(response);
Download(response, “TestConvertDocumentToHtml_CellNameAttribute.html”);