I am sending a string to a Post method in WebApi. The string contains a # character. When the Post method receives it, the string is received without the # character and everything after it.
So if the string I send is
abc#def
The Post method actually receives
abc
What's wrong here?