Asp.net – Not able to handle Axios Post request from .NET 7.0 controller
My website makes this request: const httpLink = 'https://www.myServer.com' + '/api/DBCom/saveInformation'; var postAxios = axios({ method: 'post', url: httpLink, params: {tableName: tableName}, headers: {'Content-Type': 'application/json' }, data: rowInfo } ).then(function (response) { console.log(response); // alert(response); // answer = true; })…