I’m newbie here and try to learn here.
I wanna create a Classic asp program, and it’s contain a section that users can make their form ( like contact, register and so on).
Now question is, when form created ( inputs have their name and id )
How i can read and save them in DB ( here Access DB )
Is anybody here that know an example of Web Form generator?
Please help and guide me
thanks
You can get the value of a form element with using Request.Form(“element_name”).
Considering that you know how to connect access database, you can save above informations to database like:
UPDATE
To get, dynamically created form values, you will need to do for each… loop in Request.Form object.
Also I suggest you to read this article.