I have one pdf file and in that I have editable text boxes. It has around 20 textboxes.. Now I need to update values in that using some variables..
Like in textbox1 value sholuld come from Var1 etc..
I am using .Net-C# aspose PDF library..
So my concern is how can I access that textbox in my code, I have tried with TextFragmentAbsorber but not getting that.
Check below image you will see 3 textboxes so I want to fetch that and want to set some values in that.
TextFragmentAbsorber textFragmentAbsorber = new TextFragmentAbsorber();

I would suggest looking at the documentation. A quick search found me this to access the form fields:
Source where I found it: https://docs.aspose.com/pdf/net/extract-form/
this is from the example on how to populate form fields:
Source: https://docs.aspose.com/pdf/net/fill-form/