I have a problem. I\'m trying to send content of a textarea with an ajax call, but it doesn\'t seem to be working, and I don\'t know why.
There\'s the method called
Generate your JSON programatically.
{
type: "POST",
url: "Default.aspx/GetStatus",
data: JSON.stringify({
statusText: statusText
}),
// etc
Obviously, the server side of the process needs to be set up to accept a POST request with a JSON body (instead of the more standard URL Form Encoded format) as well.