I have a page [page1.aspx] that gets info from http header file. I need to
develop a page [page2] that redirects to this page so the page2 can read
header that page1 created.
Thing is when I redirect from page1 302 code is sent to browser and content
of the header is lost. Is there any help to my problem?
Thanks
Use Server.Execute instead of redirect
Anil Paranganat
> I have a page [page1.aspx] that gets info from http header file. I need to
> develop a page [page2] that redirects to this page so the page2 can read
[quoted text clipped - 4 lines]
>
> Thanks
dd - 21 Jul 2005 19:28 GMT
Unfortunately
This does not work since I have to set the header on page1. Therefore header
is not part of response yet, so it can't be read on the page2.Right?. Also
page2 has to open and page1 has to close as the result of the operation -
not to add page2 to the page1.
> Use Server.Execute instead of redirect
>
[quoted text clipped - 9 lines]
> >
> > Thanks