Identity Server 4 WindowsCryptographicException: Keyset does not exist

I get these these two exceptions in Identity Server 4 during a regular login to get a token.
It’s on a load balanced setup with 2 servers, so I’ve done the following:
They both get the same PFX for encrypting tokens. It works just fine on a single server. They have the password for the PFX file, and can seemingly encrypt a token correct correctly.

Add the image and path to the database for the specific users

protected void Upload(object sender, EventArgs e) { //Extract Image File Name. string fileName = Path.GetFileName(FileUpload1.PostedFile.FileName); //Set the Image File Path. string filePath = "~/Uploads/" + fileName; //Save the Image File in Folder. FileUpload1.PostedFile.SaveAs(Server.MapPath(filePath)); string mycon = "server =localhost; Uid=root; password = ; persistsecurityinfo = True; database =ovs; SslMode = none"; MySqlConnection con1 = new MySqlConnection(mycon); … Read more

TreeView displays the child nodes of the root node but does not display child nodes of child nodes

I am making a TreeView using ASP.NET web forms. The problem I am facing is that the child nodes of the root node(s) are being displayed, but the child nodes of child nodes are not being displayed on the web page.
To explain this in a better way, I have attached a screenshot below that shows the data in the database.