Since I have a large amount of data to transfer, I decided to use the post method. In webform1.aspx, I utilized
$.post("webform2.aspx",{data:message})
during the button click event.
However, after posting the data, I am unable to view the rendered page in webform2.aspx as it remains on webform1.aspx.
Is there a way to successfully pass the data and display the posted page?