Access post values


/ Published in: C#
Save to your folder(s)



Copy this code and paste it in your HTML
  1. Ways to get post values:
  2. txtFirstName.Text (the id of a given server side input form)
  3.  
  4. or
  5.  
  6. old school way: Request.Form["FirstName"] (obviously not type safe)

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.