I have to retrieve the value of \"idPerson\" in my web api in .net. I already retrieve the file \"UploadedImage\". But I can\'t retrieve the value of \"idPerson\".
S
Assuming your are sending typical Ajax POST request, you can retrieve each field from HttpContext.Current.Request.Form
collection.
Just find your key in collection like HttpContext.Current.Request.Form["KEY"]
TBH it is hard to say how to retrieve any value when you did not provide the way of sending data.