This is my situation:
1. I have an asp.net webapplication with a webform with a button.
2. When the user clicks the button, he is response.redirected to a different web page in a different application.
3. When the second web page loads, it runs a program that generates a pdf. Then the user is response.redirected to the .pdf. They never even see the second page.
4. When the .pdf appears, the browser's back button is grey. Moreover, the pdf takes up the whole browser window. So the user cannot return to their original web page.
5. This frustrates the user.
How do I remind the browser where it started? I know how to cache variables. But I do not know how to tell the browser to use a cached variable as the value for the back button. Remember that the .pdf takes up the whole screen. So I cannot add a normal button.
1. I have an asp.net webapplication with a webform with a button.
2. When the user clicks the button, he is response.redirected to a different web page in a different application.
3. When the second web page loads, it runs a program that generates a pdf. Then the user is response.redirected to the .pdf. They never even see the second page.
4. When the .pdf appears, the browser's back button is grey. Moreover, the pdf takes up the whole browser window. So the user cannot return to their original web page.
5. This frustrates the user.
How do I remind the browser where it started? I know how to cache variables. But I do not know how to tell the browser to use a cached variable as the value for the back button. Remember that the .pdf takes up the whole screen. So I cannot add a normal button.