Document Save as Docx issue

Unable to save document docx to Response, Work with “.doc” but not with “.docx” option
Word unable to open the document, recovery will recover the document.

Here is my code for save option:

SaveOptions saveOptions = SaveOptions.CreateSaveOptions(SaveFormat.Docx);
docx.Save(HttpContext.Current.Response,"AB9991v12.docx", Aspose.Words.ContentDisposition.Inline, saveOptions);

@mtariq134 You should add Response.End right after saving document to response to resolve this problem. See the following code:

doc.Save(Response, "test.docx", ContentDisposition.Inline, new OoxmlSaveOptions());
Response.End();