Return to Snippet

Revision: 31588
at October 19, 2010 11:46 by housecor


Updated Code
Ways to get post values: 
txtFirstName.Text (the id of a given server side input form) 

or 

old school way: Request.Form["FirstName"] (obviously not type safe)

Revision: 31587
at September 9, 2010 04:10 by housecor


Initial Code
Ways to get post values: txtFirstName.Text (the id of a given server side input form) or (less OO, and not type safe) old school way: Request.Form["FirstName"]

Initial URL


Initial Description


Initial Title
Access post values

Initial Tags


Initial Language
C#