I am creating a Web Service to handle request from Android application using POST method. Here is my controller:
[AcceptVerbs(HttpVerbs.Post)]
public JsonResult Verify(String formCollection) {
...
}
By using this method, I didn't get any parameters in formCollection. Please help me!
Thanks!