[thelist] (parameters & ASP)

Chris Blessing webguy at mail.rit.edu
Thu May 30 13:18:07 CDT 2002


Hehe, not ignorance!  You'll be happy to know I once asked the exact same
question.

What you want to do is change this:

<FORM METHOD="post"...>

to this:

<FORM METHOD="get"...>

If your <FORM...> tag has no METHOD parameter, then add it.  Once you change
this all the elements in that form (all inputs, all checkboxes, etc.) will
travel via the querystring (that's the ?blah=1&blah2=2 part of the URL
you're talking about).

I presume in your ASP code you're using the Request object to get these
values right now correct?  How are you using it?  As
Request("parameterName") or Request.Form("paramaterName")?

Chris Blessing
webguy at mail.rit.edu
http://www.330i.net

> Helps a little - MORE remedial pleeze - I'm showing vast ignorance
> here - yes thats what it needs to do - because that way the info
> gets stored in the log files in addition to the database - personal
> information will not be queried - just survey question answers
> - so privacy is not the issue here.
>
> For example:
>
> A customer feedback survey - it will not be identified to an
> individual -
>
> On a question like What is your primary job?
>
> Telecommunications
> IT
> Finance
> Other
>
> Normally this would be a simple post to send the result to the
> database - how would I do it differently to actually append the
> job=IT result so it would show up in the log file?




More information about the thelist mailing list