How can retrieve string formData js in c#
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.
Request.Form["KEY"] worked in my MVC controller.