Hello I have a API method build in framework 4 which returns string type of data
[HttpPost]
public string ValidateData(DataTable dt)
{
return _repository.ValidateAllData(dt);
}
Now I want to consume this API method in my asp.net application from server side. Now how do i consume this method with datatable as parameter ?