I am using Aspose.Pdf.Facades.Form.FillFIeld (asapose.PDF version 20.4.0) to insert a date (13/06/1981 french format) into a fillable PDF file. When I open the filled PDF, the date is displayed with the year 3881 instead of 1981.The month and the day are also switched.
To insert the date, I have the code :
Aspose.Pdf.Facades.Form pdfForm=new Aspose.Pdf.Facades.Form(directory);
string value=“13/06/1981”;
pdfForm.FillField(allfields[i], value);
Thank in advance for your reply