Ask a Question related to Dreamweaver AppDev, Design and Development.
-
wellsuited #1
Query one database field with 2 parameters.
I am trying to query a database field with several check boxes from a form. I
though this would work but it doesn?t : Select * From table WHERE Field =
VarSomething VarSomething 0 Request.Form(?cbSomething1?)
VarSomething 0 Request.Form(?cbSomething2?) Or this Select * From Table
WHERE Field = VarSomething OR Field = VarSomethingElse
VarSomething 0 Request.Form(?cbSomething1?)
VarSomething Else 0 Request.Form(?cbSomething2?)
wellsuited Guest
-
How do I use URL parameters to return a specific field?
I have a form, when users complete it I would like to have a confirmation page that returns the value of the "first_name" field from the form, eg.... -
Too Few Parameters?? Date field?
Hi, Access, DWMX, ASP, VBScript. SELECT eventydate FROM qryEvents ORDER BY eventydate ASC Is returning: -
Passing Query Parameters in Sub-Queries
coder23 wrote: '1/1/2004' ??? Shouldn't it be #'1/1/2004# ? Or are these Text parameters? You need to create another saved query for this: ... -
Alternate for passing parameters for dbase query?
And perhaps this could give you some ideas about avoiding querystrings: ASP Design Tips - Post Back Page... -
using Command to set Parameters and Recordset to retrive the Query
Hi guys, withou using SP, I want to be able to add a Parameter to the SQL Query and retrive the Recordset so I can use the Paging property under... -
mxa #2
Re: Query one database field with 2 parameters.
Does this help?
SELECT *
FROM table WHERE (Field = '" & Request.Form("cbSomething1") & "') OR (Field = '" & Request.Form("cbSomething2") & "')
mxa Guest



Reply With Quote

