Código:
Mi duda es, si tengo SSL instalado y configurado, ya que puedo acceder a mi host mediante https, ¿tengo que configurar alguna cosa más? Dim username As String
username = User.Identity.Name
greetingLabel.Text = "Welcome " & username
Dim cert As HttpClientCertificate = Request.ClientCertificate
If cert.IsPresent Then
'Get the Organization (O) field from the Subject section.
certDataLabel.Text = cert.Get("Subject O")
Else
certDataLabel.Text = "No certificate was found."
End If
¿Hay algo que no estoy haciendo para poder utilizar Request.ClientCertificate.IsPresent?
Gracias, un saludo.


