Ajax в.ashx не возвращает данные
Аякс
$.ajax({
type: 'POST',
url: '/Modules/ProductInfo/ProductInfo.ashx',
data: {
ProdUID: self.ProductUID()
},
dataType: 'json',
succes: function (response) {
console.log(response);
}
})
И .ashx
partial class ProductInfo : System.Web.UI.Page {
protected void Page_Load(object sender, EventArgs e) {
//some code
Context.Response.Write(
Newtonsoft.Json.JsonConvert.SerializeObject(
new
{
html = _html,
css = _css,
js = _js
}
)
);
}
}
Проблема в том, что в моей функции успеха я ничего не получаю? Где я делаю неправильно? А также, есть ли class
что я могу передать html, css, js
строки и рендеринга полной HTML-страницы?