In angular if I use
$cookies.put('key','{somedata}');
in cookies it comes like %7Bsomedata%7D
and when I access this from client side using $cookies.get('key');
Its returning {somedata}. But When i try to access it from server side using C#
Request.Cookies["key"]
Its returning %7Bsomedata%7D
instead of {somedata}.
So I'm having issues when accessing these values in my c# code.
Please suggest me a way to set the cookie through angular so the I get the correct string in my C# code