I am wondering how I can get the post data in a collection format? Say if I have a form and one textbox named firstname, normally i type
var fn = txtFirstName.Text;
to get the data from that textbox. but I am wondering when i click on submit data to post the form how i can get the collection of raw post data?
thank you.
I want to get the post data instead of get.