This makes sense, but here is the catch unless I am missing your point.
To make this simple for my poor brain.
The student inputs his/her NAME. Then uses the drop down to choose A+ on
June 6th which is being fed from a database. Tied to this record is CID 7.
On the confirmation page I get "7", and the student NAME, but not A+ on June
6th.
The CID is being fed, but not the A+ or June 6th.
I tried a Results Wizard and I can show all the classes, but if I try to tie
the results to the CID, I get the yellow error the wizard generates.
Am I missing the point?
Thanks for writing!!!
Dave
"Skydolphin" <(E-Mail Removed)> wrote in message
news:E59CB62C-A748-499B-B5CE-(E-Mail Removed)...
> There are several different ways to do this. Assuming you are using an
ASP page the easiest way is this. In your form tag make sure you have the
action=address of the confirmation page and method=post. Then in the ASP
script in the confirmation page you can set variables equal to the posted
values from the form page. Something like:
>
>
> <form id="myform" action="confirm.asp" method="post"><input type="text"
name="student"><select size="1" name="CID"><option
value="1">1</option><option value="2">2</option></select></form>
>
> in the confirm page, get the values passed in from the form page.
> <%
> classId = request.form("CID")
> studentName = request.form("student")
> %>
>
> Be sure the values inside the quotes match the names of the form fields
from the form page.
>
> Does that make sense?
>
> Rhonda
|