I am having a wired issue in my AngularJs application. When user is trying to login to the app and if the password contains ampersand (&), then it couldn't able to validate the user.
I am using OWIN, oAuth2.0 JWT token to validate my Asp.Net Web APIs.
When i debug i found that if the password contains ampersand (&), then it is truncating all the characters from ampersand (&).
For example, if the password is 'x&x' the OAuthValidateClientAuthenticationContext context is getting only 'x' in password value.
I have attached a screen shot of the issue click to see the issue..
Any help on this issue, would be highly appreciated.