If you need to reset password of user in asp.net identity framework, we need to generate new password hash and then replace it in existing table
Use following url to generate hash then use copy user id and run myssql for reset
url: https://passwordhelper.essencetechnologies.com/
update [table] set passwordhash = ‘xxx’ where userid = ‘xxx’;
