Hi @Eduardo Gomez ,
While asking a question you need to provide a minimal reproducible example.
Sys.WebForms.PageRequestManagerParserErrorException: The message received from the server could not be parsed.
This error can be caused if you put the button in the Updatepanel.
You can keep the button outside the update panel. If you don't want to move it, just add a trigger for the button on the update panel, the postback trigger.
<Triggers>
<asp:PostBackTrigger ControlID="botonPfd" />
</Triggers
Or add code under the backend LinkButton:
Dim scriptManager As ScriptManager = scriptManager.GetCurrent(Me.Page)
scriptManager.RegisterPostBackControl(Me.YourButtonNameHere)
Best regards,
Lan Huang
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.