diff --git a/Document-Processing/Word/Word-Library/NET/FAQ.md b/Document-Processing/Word/Word-Library/NET/FAQ.md
index c1fd637c0..2e0c04e88 100644
--- a/Document-Processing/Word/Word-Library/NET/FAQ.md
+++ b/Document-Processing/Word/Word-Library/NET/FAQ.md
@@ -24,6 +24,7 @@ The frequently asked questions under each category in Essential®
* [How to set the current culture while running the .NET application?](https://help.syncfusion.com/document-processing/word/word-library/net/faqs/word-document-faqs#how-to-set-the-current-culture-while-running-the-net-application)
* [Is it possible to split Word document by pages using DocIO?](https://help.syncfusion.com/document-processing/word/word-library/net/faqs/word-document-faqs#is-it-possible-to-split-word-document-by-pages-using-docio)
* [How to check if two Word documents have the same content while ignoring formatting changes?](https://help.syncfusion.com/document-processing/word/word-library/net/faqs/word-document-faqs#how-to-check-if-two-word-documents-have-the-same-content-while-ignoring-formatting-changes)
+* [ Why does the document editor sometimes throw a script error when switching between different documents?](https://help.syncfusion.com/document-processing/word/word-library/net/faqs/word-document-faqs#Why-does-the-document-editor-sometimes-throw-a-script-error-when-switching-between-different-documents)
* [Is it possible to set a watermark for only the first page of a Word document?](https://help.syncfusion.com/document-processing/word/word-library/net/faqs/word-document-faqs#is-it-possible-to-set-a-watermark-for-only-the-first-page-of-a-word-document)
* [Why does the item index in a Word document differ from the DocIO library?](https://help.syncfusion.com/document-processing/word/word-library/net/faqs/word-document-faqs#why-does-the-item-index-in-a-word-document-differ-from-the-docio-library)
* [How to view Word documents in my .NET MAUI application using DocIO?](https://help.syncfusion.com/document-processing/word/word-library/net/faqs/word-document-faqs#how-to-view-word-documents-in-my-net-maui-application-using-docio)
@@ -150,4 +151,4 @@ The frequently asked questions under each category in Essential®
## Multithreading
-* [Does the Word library support multithreading and thread-safety?](https://help.syncfusion.com/document-processing/word/word-library/net/faqs/multithreading-word-document-reading-faqs#does-the-word-library-support-multithreading-and-thread-safety)
\ No newline at end of file
+* [Does the Word library support multithreading and thread-safety?](https://help.syncfusion.com/document-processing/word/word-library/net/faqs/multithreading-word-document-reading-faqs#does-the-word-library-support-multithreading-and-thread-safety)
diff --git a/Document-Processing/Word/Word-Library/NET/faqs/word-document-faqs.md b/Document-Processing/Word/Word-Library/NET/faqs/word-document-faqs.md
index 27d397db4..c4652821a 100644
--- a/Document-Processing/Word/Word-Library/NET/faqs/word-document-faqs.md
+++ b/Document-Processing/Word/Word-Library/NET/faqs/word-document-faqs.md
@@ -567,6 +567,11 @@ Syncfusion DocIO processes Word documents by loading them into a memory stream a
When performing operations like editing or cloning, DocIO traverses this structure and carefully handles each element to preserve the document's formatting, styles, and structure. For large or complex documents with many nested elements, it may take some time.
+## Why does the document editor sometimes throw a script error when switching between different documents?
+
+This error occurs when the previous editor instance is not properly destroyed before initializing a new one. It can result in residual event listeners and internal state conflicts. To resolve this, ensure that the existing editor instance is explicitly destroyed before creating a new one.
+
+
## Method `GetFontExactHeight` does not have an implementation error occurs at runtime. What is the cause and how to resolve it?
This error occurs due to a version mismatch between dependent libraries. The method may be unavailable or incompatible when different versions of related libraries are used in the same project. Ensure all related libraries used in the project are of the same version to maintain compatibility and prevent runtime errors.