Hi, I have a weform that gets data from the user... i then Post the data to the next page which processes it and enters it into the database.

How do i get the values of the variables that were posted to the next page?


In PHP you simply put

$Title = $_POST[txtTitle]

In ASP i have no clue

Thanks!