Hi everyone,

I have a problem in inserting radio buttons values into my MS access database. I have done it with PHP, but I need to do it with ASP.
I am trying to create a survey and I need to collect the responses in my database for further reports.

Would you please help me?

Thank you,
Mojgan

What code do you have? What errors are you getting?

In asp the form contents are held in the REQUEST collection, and depending on the method used to submit the form they can be either accessed by REQUEST.FORM("fieldname") for POST method, or REQUEST.QUERYSTRING("fieldname") for GET method.

If the value can be submitted by either post or get, or direct through the querystring, or via cookie, then you can just use REQUEST("fieldname"), which will check all of COOKIE, POST, GET for a match to the fieldname.

Anyway, post some code and we can see where you may be going wrong.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.