Which method is used to retrieve data from a form submitted via the "post" method?
Explanation
When a form is submitted using the "post" method, the data is sent in the HTTP request body. To access this data, you use Request.Form. Request.QueryString is used for data sent via the "get" method, while Response.Write and Response.WriteLine are used to output data to the response stream.