just foundational steps that might give you an idea of what to be reading over in the tutorials and faqs ...
[blue]items in blue are the subject areas each step will require[/blue]
you're going to need a database, and you'll need to know how to design the database to contain the fields you need, and datatypes of each. [blue]databse creation and table design, data types, data lengths [/blue]
you're going to need a submission form ( html or asp driven ) [blue]Form design and elements[/blue]
and a confirmation page (asp) to post the data to the database (inbound data) and this page would only be used to put the data into the DB and say thanks, show a link to the display page.... [blue]requesting form elements, ADODB connectivity, writing query/insert/update statements[/blue]
and finally a display page (asp) in order to show who's signed up from the database ( outbound data ) [blue]ADODB connectivity and recordset handling, looping, opening and closing objects[/blue]
hopefully that gives you an idea of the foundation blocks you'll need and what types if info to be reading and looking up