Click here to Skip to main content
15,899,026 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i have opened pdf file in acropbat from reportviewer in the print.aspx page,if i close the acrobat, the print.aspx the show empty page , but i want to show another page instead of print.aspx

response.redirect()
and
server.transfer()
not
support
Posted
Comments
Sandeep Mewara 24-Sep-10 5:19am    
Your question is not clear. Please edit it using 'Improve Question' and re-phrase it.
Sandeep Mewara 24-Sep-10 5:20am    
You print from a page and then you want to redirect to another?
Jitendra Zaa 28-Sep-10 2:16am    
Please explain the question....
Sunasara Imdadhusen 1-Oct-10 3:00am    
Please explain scenario in detail, so every can understand easily and give answer very as possible.

1 solution

if you can't use server-side redirects, you can use client-side scripts in your print.aspx page like this:

<script type="text/javascript">
window.location = "http://url_of_page_to_redirect_to";
</script>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900