X509 store can not find certificate
I am 开发者_运维技巧using following code to find certificates in personal store. It finds the certificate on first page load but after postback it doen't find the same certificate.
X509Store store = new X509Store(StoreName.My, StoreLocation.CurrentUser);
store.Open(OpenFlags.ReadOnly);
精彩评论