In asp.net mvc, in the controller I can access query string by
HttpContext.Request.QueryString
Similarly is there a property that exposes post data?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can pass a FormCollection parameter type via the Controller Action.
I just found this answer: https://stackoverflow.com/a/5088493/1139752
I suggest also reading up on the concept of model binding with a view of abstracting away the notion of Request.Form usage within your Action methods.