How to update Include Text field in Word document using .NET WebForms DocIO ?
No, it is not possible to directly update Include Text field in Word document using Essential® DocIO. But you can create a helper class to update the Include Text field explicitly in your sample application using Essential® DocIO.
The following sample demonstrates how to implement helper class to update the Include Text field using Essential® DocIO.
https://www.syncfusion.com/downloads/support/directtrac/general/IncludeTextUpdate_Web-809692794.zip
This sample contains a helper class “IncludeTextFieldUpdateHelper.cs” which internally update the Include Text field. The following table has API details of IncludeTextFieldUpdateHelper class.
Properties Description:
Property Name | Type | Description |
MainDocument | WordDocument | Specify the word document instance which has the Include Text field. |
MainDocumentFileName | string | Specify full path of the word document which has the Include Text field. |
IsUpdateSpecifiedBookmark | bool | True to replace the Include Text field with specified bookmark contents or else the whole document content is replaced. Note: if Include Text field does not contain any valid bookmark in the specified document, then error message “Error! BookmarkName not defined” will be replaced.
|
Method Description:
Method Name | Return Type | Description |
UpdateIncludeTextField() | void | Updates the Include Text field in the Word document. Note: if Include Text field does not contain any valid file name, then error message “Error! Not a valid a filename.” will be replaced instead of Include Text field.
|
ASP.NET applications only runs in server side, so the main document which contains Include Text field and also the document which is specified in Include Text field must be within the server local disk. If the files are in client side then it cannot access it.