In ASP.NET MVC , one can access the form post data:
ASP.NET MVC
var thisData = Request.Form[\"this.data\"];
Is it possible to achieve the
Try this:
HttpContext.Current.Request.Form["key"];