Hyperlink with hidden fields

  • Thread starter Thread starter Ted
  • Start date Start date
T

Ted

Hi
From a page I open another page with a hyperlink. On the new page I want to
list the records that consist fieldvalues that I send with the hyperlink.

This is the hyperlink from page 1:
<a target="I2" href="manadslista.asp?ar=2004&manad=10">

I2 is an InlineFrame

And this is the querie in the new page that appears in the InlineFrame:
SELECT * FROM kalreg WHERE (manad = 'manad' AND ar = 'ar')

This doesn't work, what is wrong ?
I appreciate any answer.
Ted
 
SELECT * FROM kalreg WHERE ((Request.QueryString("manad") = 'manad') AND
(Request.QueryString("ar")= 'ar'))
 
Thanks Murray
I have inserted this in page 2 but I get this error from FP DRW?

Server error: Unable to retrieve schema information from the query:

SELECT * FROM kalreg WHERE ((Request.QueryString("manad") = 'manad') AND
(Request.QueryString("ar")= 'ar'))

against a database using the connection string
DRIVER={Microsoft Access Driver
(*.mdb)};DBQ=URL=kalender4/fpdb/kalender.mdb.
The following error message comes from the database driver software; it may
appear in a different language depending on how the driver is configured.
/Ted
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top