M
Mark Dengler
Is it possible to do a Response.Redirect to multiple URLs?
I have tried the following and it simply ignores the first redirect:
Response.Redirect("test.aspx", false);
Response.Redirect(p.UrlSend, true);
I have designed the test.aspx page to simple write a cookie, just to
see if it is working and it is not. I have also used to VS.Net
Debugger and I can see that it is just skipping the first redirect.
The second redirect is executing.
Am I on the right track or is there another more appropriate method?
Is this even possible?
I have tried the following and it simply ignores the first redirect:
Response.Redirect("test.aspx", false);
Response.Redirect(p.UrlSend, true);
I have designed the test.aspx page to simple write a cookie, just to
see if it is working and it is not. I have also used to VS.Net
Debugger and I can see that it is just skipping the first redirect.
The second redirect is executing.
Am I on the right track or is there another more appropriate method?
Is this even possible?