I would like to do save some membership information like username and password for authentication purpose using c# Web API. As my server don't have any database, originally I use Formauthenication.Validate with saving all the credentials in web.config.
However, I found out that this method will soon be obsoleted. Is there a way to so. Like saving the credentials in a server place like web.config that will not need to provide a database service.
I know customise a membership provider would probably be a way. But all the example need to save in a database.
This question would be similar as the following