Answer the question
In order to leave comments, you need to log in
After publishing an asp.net mvc application on Azure, one of the methods is no longer available?
There is an ASP.NET MVC application after deployment, one of the methods that was called by javascript is no longer available.
[HttpPost]
public ActionResult Tiket(int seanceId, IEnumerable<long> ids)
var request = new XMLHttpRequest();
request.open('POST', '@Url.Action("Tiket")', true);
request.setRequestHeader('Content-Type', 'application/json; charset=UTF-8');
request.onreadystatechange = callback;
request.send(JSON.stringify({ seanceId: '192', ids: array }));
{
seanceId:'192',
ids: ['747', '757', '767']
}
Answer the question
In order to leave comments, you need to log in
Where after deployment?
Have you looked at fiddler to see what's going on?
ARR are you using?
If the website, is it in Free mode?
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question