Here is my code,
var uploadparameter = {
base64url: imageData,
};
$.ajax({
url: '@(Url.Action("CustomAsyncUpload", "ProductCreation"))',
type: 'POST',
data: JSON.stringify(uploadparameter),
contentType: 'application/json; charset=utf-8',
success: function (data)
{
}
});
When I'm passing too large base64 url in ajax call using asp.net core that time i'm facing issue.
So,How to pass too large base64 url in ajax call using asp.net core..?
Thanks, Kaushik.