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.
Loading
V S N Raju KanumuriPosted May 11, 2012, 8:37 AM
try this instead of Response.Redirect
hope this will help to u
Ajay PatelPosted May 11, 2012, 7:59 AM