Hi there,
I have an aspx-c# page that uses response.redirect.
When the redirect is done I would like the target page to be open at the top, i.e. the user should see the top of the page.
How could I do that?
Below is the current response.redirect statement:
Response.Redirect("PaymentFormHolding.aspx?ws=" + CSessionHandler.Website + "&uHId=" + userHoldingId.ToString() + (m_testMode ? "&testmode=1" : ""));
So the PaymentFormHolding page should open at the top.
Thank you.