c# ASP HttpResponse with redirect causes HTTP 302
Posted
by acnse
on Stack Overflow
See other posts from Stack Overflow
or by acnse
Published on 2010-04-16T17:49:40Z
Indexed on
2010/04/16
17:53 UTC
Read the original article
Hit count: 436
Hi, I have a flow of web pages A and B. On the web page A, I do a "Response.Redirect("B.aspx"); The page B needs a client certificate. When the redirect is done I see a popup asking for a client certificate. I select the correct certificate, which is retrieved from a smart card, and then I insert the pin. Right after, I see a page saying that the connection was lost, and I receive an HTTP 302. I never reach the page B.aspx. I tried to add the following line "Response.RedirectLocation = "B.aspx"; but with no success too.
Any hints? Thanks
© Stack Overflow or respective owner