I just created an Ajax method. It works if I don't pass any data to the controller. If I want to pass some data to the controller. It works only if I open the IE degguer. I tried to add the cache option to false. But it does not work. Here is some of my code :
function ReportIdLoad(reportId) {
$.ajax({
type: 'POST',
cache: false,
url: 'WebReportGeneratorView.aspx/ReportIdLoad',
contentType: 'application/json',
data: JSON.stringify(reportId),
dataType: 'json'
})
}
[WebMethod]
public static void ReloadReportWorkbookContext(string reportId)
{
//My code
}
Thanks in advance for your help.
@Roamer-1888 :
Thanks for the track.
Indeed, It sounds like this problem.
I add the option :
And I get to my break point.