B
Bill
Hello,
I'm currently checking if someone has submitted a certificate using the
following upon logon:
=======
HttpClientCertificate cs = Request.ClientCertificate;
if(cs.IsPresent)
{
....
}
======
Which works great. The only problem is when the user logs out the
certificate is still present.
======
private void OnLogout()
{
Session.Abandon();
FormsAuthenticate.SignOut();
Response.Redirect("Login.aspx", true);
}
=======
Is there a way to remove the certificate so after "OnLogout()" the following
code will return false:
=======
if(cs.IsPresent)
{
....
}
=======
I'm currently checking if someone has submitted a certificate using the
following upon logon:
=======
HttpClientCertificate cs = Request.ClientCertificate;
if(cs.IsPresent)
{
....
}
======
Which works great. The only problem is when the user logs out the
certificate is still present.
======
private void OnLogout()
{
Session.Abandon();
FormsAuthenticate.SignOut();
Response.Redirect("Login.aspx", true);
}
=======
Is there a way to remove the certificate so after "OnLogout()" the following
code will return false:
=======
if(cs.IsPresent)
{
....
}
=======