| I agree with the post above me, you are mixing between two technologies.
To post your page to another page, simply set the PostBackUrl property of the button or control which you wish to post to Save.aspx.
This property takes a string value that points to the location of the file to which this page should post. In this case, it is Save.aspx. This means that Save.aspx now receives the postback and all the values contained in the Get.aspx controls.
However all this is not needed. All you need is one page.
Hope this helps. |