$.ajax({
url: 'main.ashx?action=directorAddManager&name=Кузя',
cache: false,
dataType: "text",
type: "GET",
error: function ()
{
},
success: function (str)
{
}
});
public void ProcessRequest(HttpContext context)
{
var q = context.Request.QueryString;
var name = q["name"];
}
Кодировка на странице
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
Пробовал также
<meta http-equiv="Content-Type" content="text/html; charset=utf-16" />