I know how to collect data using FP forms and Access.
I know how to collect data and pass it to another ASP.

I want to collect data on Page1.asp; when Submit is pressed, the user is
taken to Page2.asp where s/he is asked a Yes/No question using option buttons.
If user clicks Yes, s/he is directed to Yes.asp, otherwise No.asp.
Data collection continues from there.
I don't need to save the Yes/No answer.

TIA,
Dianne

Re: Redirect to page, based on answer by Mike

Mike
Thu Jun 02 17:01:19 CDT 2005

Page 1 will contain a form and will be submitted to a custom
script called page 2.asp

Page2.asp will collect the information from page1, and then
you also will have your second form. The second form will
use hidden fields populated with the form results from
page1. Page2 will also submit the information to a custom
script, called process.asp

Process.asp will read the form information from page2 will
read the form data. Except for the yes/no, the information
will be stored in session variables. The yes/no will be read
and an if/.then statement will redirect to yes.asp or no.asp

yes.asp and no.asp will read the session variables back in
and then you will collect more data. The info from the
session variables will be used to populate hidden fields
here as well. Continue on as needed

Mike



"Dianne" <Dianne@discussions.microsoft.com> wrote in message
news:2245DFCF-6A5A-48A5-9B0E-A394BCD7854F@microsoft.com...
:I know how to collect data using FP forms and Access.
: I know how to collect data and pass it to another ASP.
:
: I want to collect data on Page1.asp; when Submit is
pressed, the user is
: taken to Page2.asp where s/he is asked a Yes/No question
using option buttons.
: If user clicks Yes, s/he is directed to Yes.asp,
otherwise No.asp.
: Data collection continues from there.
: I don't need to save the Yes/No answer.
:
: TIA,
: Dianne



Re: Redirect to page, based on answer by Dianne

Dianne
Thu Jun 02 21:11:02 CDT 2005

Thanks -- this paragraph is giving me trouble:

> Process.asp will read the form information from page2 will
> read the form data. (Not a complete sentence - I'm not criticizing your grammar, but it's not clear to me.)
>Except for the yes/no, the information
> will be stored in session variables. The yes/no will be read
> and an if/.then statement will redirect to yes.asp or no.asp (I know the idea of if/then statements, but don't know how to write them exactly.)

I think I can figure out the rest.

TIA,
Dianne



"Mike Mueller" wrote:

> Page 1 will contain a form and will be submitted to a custom
> script called page 2.asp
>
> Page2.asp will collect the information from page1, and then
> you also will have your second form. The second form will
> use hidden fields populated with the form results from
> page1. Page2 will also submit the information to a custom
> script, called process.asp
>
> Process.asp will read the form information from page2 will
> read the form data. Except for the yes/no, the information
> will be stored in session variables. The yes/no will be read
> and an if/.then statement will redirect to yes.asp or no.asp
>
> yes.asp and no.asp will read the session variables back in
> and then you will collect more data. The info from the
> session variables will be used to populate hidden fields
> here as well. Continue on as needed
>
> Mike
>
>
>
> "Dianne" <Dianne@discussions.microsoft.com> wrote in message
> news:2245DFCF-6A5A-48A5-9B0E-A394BCD7854F@microsoft.com...
> :I know how to collect data using FP forms and Access.
> : I know how to collect data and pass it to another ASP.
> :
> : I want to collect data on Page1.asp; when Submit is
> pressed, the user is
> : taken to Page2.asp where s/he is asked a Yes/No question
> using option buttons.
> : If user clicks Yes, s/he is directed to Yes.asp,
> otherwise No.asp.
> : Data collection continues from there.
> : I don't need to save the Yes/No answer.
> :
> : TIA,
> : Dianne
>
>
>

Re: Redirect to page, based on answer by p

p
Thu Jun 02 21:30:36 CDT 2005

in page process.asp using pseudo code for ASP code
<%
grab form feilds from the posted form.

assign fields you want to retrieve later to cookoies or session variables.

yespage="someyespage.html"
nopage="somenopage.html"

If yesnofied; - "yes" then
Response.redirect(yespage)
Else
Response.redirect(nopage)
End if

%>

..PC
Dianne wrote:
> Thanks -- this paragraph is giving me trouble:
>
>
>>Process.asp will read the form information from page2 will
>>read the form data. (Not a complete sentence - I'm not criticizing your grammar, but it's not clear to me.)
>>Except for the yes/no, the information
>>will be stored in session variables. The yes/no will be read
>>and an if/.then statement will redirect to yes.asp or no.asp (I know the idea of if/then statements, but don't know how to write them exactly.)
>
>
> I think I can figure out the rest.
>
> TIA,
> Dianne
>
>
>
> "Mike Mueller" wrote:
>
>
>>Page 1 will contain a form and will be submitted to a custom
>>script called page 2.asp
>>
>>Page2.asp will collect the information from page1, and then
>>you also will have your second form. The second form will
>>use hidden fields populated with the form results from
>>page1. Page2 will also submit the information to a custom
>>script, called process.asp
>>
>>Process.asp will read the form information from page2 will
>>read the form data. Except for the yes/no, the information
>>will be stored in session variables. The yes/no will be read
>>and an if/.then statement will redirect to yes.asp or no.asp
>>
>>yes.asp and no.asp will read the session variables back in
>>and then you will collect more data. The info from the
>>session variables will be used to populate hidden fields
>>here as well. Continue on as needed
>>
>>Mike
>>
>>
>>
>>"Dianne" <Dianne@discussions.microsoft.com> wrote in message
>>news:2245DFCF-6A5A-48A5-9B0E-A394BCD7854F@microsoft.com...
>>:I know how to collect data using FP forms and Access.
>>: I know how to collect data and pass it to another ASP.
>>:
>>: I want to collect data on Page1.asp; when Submit is
>>pressed, the user is
>>: taken to Page2.asp where s/he is asked a Yes/No question
>>using option buttons.
>>: If user clicks Yes, s/he is directed to Yes.asp,
>>otherwise No.asp.
>>: Data collection continues from there.
>>: I don't need to save the Yes/No answer.
>>:
>>: TIA,
>>: Dianne
>>
>>
>>

Re: Redirect to page, based on answer by Dianne

Dianne
Thu Jun 02 22:32:05 CDT 2005

The IF/THEN is almost working. This is Page2.asp:

<html>

<form method="POST" action="Process.asp">
<p><input type=â??textâ?? name=â??Namedâ?? size=â??20â??
value=â??<%=Request.Form("Name")%>â?? > Name</p>
<p><input type=â??textâ?? name="YesNo" size=â??20â??
value=â??<%=Request.Form("R1")%>â?? > Yes/No</p>

<%
Dim yespage
Dim nopage
yespage = "http://microsoft.com"
nopage = "http://yahoo.com"

If request.form("Name") = "mama" then

'If request.form("R1") = "yes" then *** This is the part that won't work ***
response.redirect(yespage)
else
response.redirect(nopage)
end if

%></html>

If I type MAMA in the text box of Page1.asp, it directs me to the YesPage.
But if I try to use the option buttons, it always goes to the NoPage. On
Page1.asp, I changed the Initial Values of the option buttons to Yes and No
(from V1 and V2).

I'm wondering if there is something about option buttons that's preventing
it from working?

Thanks for your help.
Dianne

"p c" wrote:

> in page process.asp using pseudo code for ASP code
> <%
> grab form feilds from the posted form.
>
> assign fields you want to retrieve later to cookoies or session variables.
>
> yespage="someyespage.html"
> nopage="somenopage.html"
>
> If yesnofied; - "yes" then
> Response.redirect(yespage)
> Else
> Response.redirect(nopage)
> End if
>
> %>
>
> ...PC
> Dianne wrote:
> > Thanks -- this paragraph is giving me trouble:
> >
> >
> >>Process.asp will read the form information from page2 will
> >>read the form data. (Not a complete sentence - I'm not criticizing your grammar, but it's not clear to me.)
> >>Except for the yes/no, the information
> >>will be stored in session variables. The yes/no will be read
> >>and an if/.then statement will redirect to yes.asp or no.asp (I know the idea of if/then statements, but don't know how to write them exactly.)
> >
> >
> > I think I can figure out the rest.
> >
> > TIA,
> > Dianne
> >
> >
> >
> > "Mike Mueller" wrote:
> >
> >
> >>Page 1 will contain a form and will be submitted to a custom
> >>script called page 2.asp
> >>
> >>Page2.asp will collect the information from page1, and then
> >>you also will have your second form. The second form will
> >>use hidden fields populated with the form results from
> >>page1. Page2 will also submit the information to a custom
> >>script, called process.asp
> >>
> >>Process.asp will read the form information from page2 will
> >>read the form data. Except for the yes/no, the information
> >>will be stored in session variables. The yes/no will be read
> >>and an if/.then statement will redirect to yes.asp or no.asp
> >>
> >>yes.asp and no.asp will read the session variables back in
> >>and then you will collect more data. The info from the
> >>session variables will be used to populate hidden fields
> >>here as well. Continue on as needed
> >>
> >>Mike
> >>
> >>
> >>
> >>"Dianne" <Dianne@discussions.microsoft.com> wrote in message
> >>news:2245DFCF-6A5A-48A5-9B0E-A394BCD7854F@microsoft.com...
> >>:I know how to collect data using FP forms and Access.
> >>: I know how to collect data and pass it to another ASP.
> >>:
> >>: I want to collect data on Page1.asp; when Submit is
> >>pressed, the user is
> >>: taken to Page2.asp where s/he is asked a Yes/No question
> >>using option buttons.
> >>: If user clicks Yes, s/he is directed to Yes.asp,
> >>otherwise No.asp.
> >>: Data collection continues from there.
> >>: I don't need to save the Yes/No answer.
> >>:
> >>: TIA,
> >>: Dianne
> >>
> >>
> >>
>

Re: Redirect to page, based on answer by Ronx

Ronx
Fri Jun 03 00:49:08 CDT 2005

Case sensitivity.
"Yes" does not equal "yes"
The option value must be the same case as the comparative string in
'If request.form("R1") = "yes" then *** This is the part that won't
work ***
so
'If request.form("R1") = "Yes" then *** This should work ***
--
Ron Symonds
Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.

"Dianne" <Dianne@discussions.microsoft.com> wrote in message
news:A232C519-E401-40C2-8B7E-A1719BCEE1CD@microsoft.com...
> The IF/THEN is almost working. This is Page2.asp:
>
> <html>
>
> <form method="POST" action="Process.asp">
> <p><input type="text" name="Named" size="20"
> value="<%=Request.Form("Name")%>" > Name</p>
> <p><input type="text" name="YesNo" size="20"
> value="<%=Request.Form("R1")%>" > Yes/No</p>
>
> <%
> Dim yespage
> Dim nopage
> yespage = "http://microsoft.com"
> nopage = "http://yahoo.com"
>
> If request.form("Name") = "mama" then
>
> 'If request.form("R1") = "yes" then *** This is the part that won't
> work ***
> response.redirect(yespage)
> else
> response.redirect(nopage)
> end if
>
> %></html>
>
> If I type MAMA in the text box of Page1.asp, it directs me to the
> YesPage.
> But if I try to use the option buttons, it always goes to the
> NoPage. On
> Page1.asp, I changed the Initial Values of the option buttons to Yes
> and No
> (from V1 and V2).
>
> I'm wondering if there is something about option buttons that's
> preventing
> it from working?
>
> Thanks for your help.
> Dianne
>
> "p c" wrote:
>
>> in page process.asp using pseudo code for ASP code
>> <%
>> grab form feilds from the posted form.
>>
>> assign fields you want to retrieve later to cookoies or session
>> variables.
>>
>> yespage="someyespage.html"
>> nopage="somenopage.html"
>>
>> If yesnofied; - "yes" then
>> Response.redirect(yespage)
>> Else
>> Response.redirect(nopage)
>> End if
>>
>> %>
>>
>> ...PC
>> Dianne wrote:
>> > Thanks -- this paragraph is giving me trouble:
>> >
>> >
>> >>Process.asp will read the form information from page2 will
>> >>read the form data. (Not a complete sentence - I'm not
>> >>criticizing your grammar, but it's not clear to me.)
>> >>Except for the yes/no, the information
>> >>will be stored in session variables. The yes/no will be read
>> >>and an if/.then statement will redirect to yes.asp or no.asp (I
>> >>know the idea of if/then statements, but don't know how to write
>> >>them exactly.)
>> >
>> >
>> > I think I can figure out the rest.
>> >
>> > TIA,
>> > Dianne
>> >
>> >
>> >
>> > "Mike Mueller" wrote:
>> >
>> >
>> >>Page 1 will contain a form and will be submitted to a custom
>> >>script called page 2.asp
>> >>
>> >>Page2.asp will collect the information from page1, and then
>> >>you also will have your second form. The second form will
>> >>use hidden fields populated with the form results from
>> >>page1. Page2 will also submit the information to a custom
>> >>script, called process.asp
>> >>
>> >>Process.asp will read the form information from page2 will
>> >>read the form data. Except for the yes/no, the information
>> >>will be stored in session variables. The yes/no will be read
>> >>and an if/.then statement will redirect to yes.asp or no.asp
>> >>
>> >>yes.asp and no.asp will read the session variables back in
>> >>and then you will collect more data. The info from the
>> >>session variables will be used to populate hidden fields
>> >>here as well. Continue on as needed
>> >>
>> >>Mike
>> >>
>> >>
>> >>
>> >>"Dianne" <Dianne@discussions.microsoft.com> wrote in message
>> >>news:2245DFCF-6A5A-48A5-9B0E-A394BCD7854F@microsoft.com...
>> >>:I know how to collect data using FP forms and Access.
>> >>: I know how to collect data and pass it to another ASP.
>> >>:
>> >>: I want to collect data on Page1.asp; when Submit is
>> >>pressed, the user is
>> >>: taken to Page2.asp where s/he is asked a Yes/No question
>> >>using option buttons.
>> >>: If user clicks Yes, s/he is directed to Yes.asp,
>> >>otherwise No.asp.
>> >>: Data collection continues from there.
>> >>: I don't need to save the Yes/No answer.
>> >>:
>> >>: TIA,
>> >>: Dianne
>> >>
>> >>
>> >>
>>



Re: Redirect to page, based on answer by Dianne

Dianne
Sat Jun 04 16:31:02 CDT 2005

Thanks to all - it's working!
Dianne

"Ronx" wrote:

> Case sensitivity.
> "Yes" does not equal "yes"
> The option value must be the same case as the comparative string in
> 'If request.form("R1") = "yes" then *** This is the part that won't
> work ***
> so
> 'If request.form("R1") = "Yes" then *** This should work ***
> --
> Ron Symonds
> Microsoft MVP (FrontPage)
> Reply only to group - emails will be deleted unread.
>
> "Dianne" <Dianne@discussions.microsoft.com> wrote in message
> news:A232C519-E401-40C2-8B7E-A1719BCEE1CD@microsoft.com...
> > The IF/THEN is almost working. This is Page2.asp:
> >
> > <html>
> >
> > <form method="POST" action="Process.asp">
> > <p><input type="text" name="Named" size="20"
> > value="<%=Request.Form("Name")%>" > Name</p>
> > <p><input type="text" name="YesNo" size="20"
> > value="<%=Request.Form("R1")%>" > Yes/No</p>
> >
> > <%
> > Dim yespage
> > Dim nopage
> > yespage = "http://microsoft.com"
> > nopage = "http://yahoo.com"
> >
> > If request.form("Name") = "mama" then
> >
> > 'If request.form("R1") = "yes" then *** This is the part that won't
> > work ***
> > response.redirect(yespage)
> > else
> > response.redirect(nopage)
> > end if
> >
> > %></html>
> >
> > If I type MAMA in the text box of Page1.asp, it directs me to the
> > YesPage.
> > But if I try to use the option buttons, it always goes to the
> > NoPage. On
> > Page1.asp, I changed the Initial Values of the option buttons to Yes
> > and No
> > (from V1 and V2).
> >
> > I'm wondering if there is something about option buttons that's
> > preventing
> > it from working?
> >
> > Thanks for your help.
> > Dianne
> >
> > "p c" wrote:
> >
> >> in page process.asp using pseudo code for ASP code
> >> <%
> >> grab form feilds from the posted form.
> >>
> >> assign fields you want to retrieve later to cookoies or session
> >> variables.
> >>
> >> yespage="someyespage.html"
> >> nopage="somenopage.html"
> >>
> >> If yesnofied; - "yes" then
> >> Response.redirect(yespage)
> >> Else
> >> Response.redirect(nopage)
> >> End if
> >>
> >> %>
> >>
> >> ...PC
> >> Dianne wrote:
> >> > Thanks -- this paragraph is giving me trouble:
> >> >
> >> >
> >> >>Process.asp will read the form information from page2 will
> >> >>read the form data. (Not a complete sentence - I'm not
> >> >>criticizing your grammar, but it's not clear to me.)
> >> >>Except for the yes/no, the information
> >> >>will be stored in session variables. The yes/no will be read
> >> >>and an if/.then statement will redirect to yes.asp or no.asp (I
> >> >>know the idea of if/then statements, but don't know how to write
> >> >>them exactly.)
> >> >
> >> >
> >> > I think I can figure out the rest.
> >> >
> >> > TIA,
> >> > Dianne
> >> >
> >> >
> >> >
> >> > "Mike Mueller" wrote:
> >> >
> >> >
> >> >>Page 1 will contain a form and will be submitted to a custom
> >> >>script called page 2.asp
> >> >>
> >> >>Page2.asp will collect the information from page1, and then
> >> >>you also will have your second form. The second form will
> >> >>use hidden fields populated with the form results from
> >> >>page1. Page2 will also submit the information to a custom
> >> >>script, called process.asp
> >> >>
> >> >>Process.asp will read the form information from page2 will
> >> >>read the form data. Except for the yes/no, the information
> >> >>will be stored in session variables. The yes/no will be read
> >> >>and an if/.then statement will redirect to yes.asp or no.asp
> >> >>
> >> >>yes.asp and no.asp will read the session variables back in
> >> >>and then you will collect more data. The info from the
> >> >>session variables will be used to populate hidden fields
> >> >>here as well. Continue on as needed
> >> >>
> >> >>Mike
> >> >>
> >> >>
> >> >>
> >> >>"Dianne" <Dianne@discussions.microsoft.com> wrote in message
> >> >>news:2245DFCF-6A5A-48A5-9B0E-A394BCD7854F@microsoft.com...
> >> >>:I know how to collect data using FP forms and Access.
> >> >>: I know how to collect data and pass it to another ASP.
> >> >>:
> >> >>: I want to collect data on Page1.asp; when Submit is
> >> >>pressed, the user is
> >> >>: taken to Page2.asp where s/he is asked a Yes/No question
> >> >>using option buttons.
> >> >>: If user clicks Yes, s/he is directed to Yes.asp,
> >> >>otherwise No.asp.
> >> >>: Data collection continues from there.
> >> >>: I don't need to save the Yes/No answer.
> >> >>:
> >> >>: TIA,
> >> >>: Dianne
> >> >>
> >> >>
> >> >>
> >>
>
>
>

Re: Redirect to page, based on answer by MikeR

MikeR
Sun Jun 05 11:47:59 CDT 2005

If UCase(request.form("R1")) = "YES" then

Makes the comaprison work regardless of the case of R1.
MikeR

Dianne wrote:
> Thanks to all - it's working!
> Dianne
>
> "Ronx" wrote:
>
>
>>Case sensitivity.
>>"Yes" does not equal "yes"
>>The option value must be the same case as the comparative string in
>>'If request.form("R1") = "yes" then *** This is the part that won't
>>work ***
>>so
>>'If request.form("R1") = "Yes" then *** This should work ***
>>--
>>Ron Symonds
>>Microsoft MVP (FrontPage)
>>Reply only to group - emails will be deleted unread.
>>
>>"Dianne" <Dianne@discussions.microsoft.com> wrote in message
>>news:A232C519-E401-40C2-8B7E-A1719BCEE1CD@microsoft.com...
>>
>>>The IF/THEN is almost working. This is Page2.asp:
>>>
>>><html>
>>>
>>><form method="POST" action="Process.asp">
>>> <p><input type="text" name="Named" size="20"
>>>value="<%=Request.Form("Name")%>" > Name</p>
>>> <p><input type="text" name="YesNo" size="20"
>>>value="<%=Request.Form("R1")%>" > Yes/No</p>
>>>
>>> <%
>>>Dim yespage
>>>Dim nopage
>>>yespage = "http://microsoft.com"
>>>nopage = "http://yahoo.com"
>>>
>>>If request.form("Name") = "mama" then
>>>
>>>'If request.form("R1") = "yes" then *** This is the part that won't
>>>work ***
>>>response.redirect(yespage)
>>>else
>>>response.redirect(nopage)
>>>end if
>>>
>>>%></html>
>>>
>>>If I type MAMA in the text box of Page1.asp, it directs me to the
>>>YesPage.
>>>But if I try to use the option buttons, it always goes to the
>>>NoPage. On
>>>Page1.asp, I changed the Initial Values of the option buttons to Yes
>>>and No
>>>(from V1 and V2).
>>>
>>>I'm wondering if there is something about option buttons that's
>>>preventing
>>>it from working?
>>>
>>>Thanks for your help.
>>>Dianne
>>>
>>>"p c" wrote:
>>>
>>>
>>>>in page process.asp using pseudo code for ASP code
>>>><%
>>>>grab form feilds from the posted form.
>>>>
>>>>assign fields you want to retrieve later to cookoies or session
>>>>variables.
>>>>
>>>>yespage="someyespage.html"
>>>>nopage="somenopage.html"
>>>>
>>>>If yesnofied; - "yes" then
>>>> Response.redirect(yespage)
>>>>Else
>>>> Response.redirect(nopage)
>>>>End if
>>>>
>>>>%>
>>>>
>>>>...PC
>>>>Dianne wrote:
>>>>
>>>>>Thanks -- this paragraph is giving me trouble:
>>>>>
>>>>>
>>>>>
>>>>>>Process.asp will read the form information from page2 will
>>>>>>read the form data. (Not a complete sentence - I'm not
>>>>>>criticizing your grammar, but it's not clear to me.)
>>>>>>Except for the yes/no, the information
>>>>>>will be stored in session variables. The yes/no will be read
>>>>>>and an if/.then statement will redirect to yes.asp or no.asp (I
>>>>>>know the idea of if/then statements, but don't know how to write
>>>>>>them exactly.)
>>>>>
>>>>>
>>>>>I think I can figure out the rest.
>>>>>
>>>>>TIA,
>>>>>Dianne
>>>>>
>>>>>
>>>>>
>>>>>"Mike Mueller" wrote:
>>>>>
>>>>>
>>>>>
>>>>>>Page 1 will contain a form and will be submitted to a custom
>>>>>>script called page 2.asp
>>>>>>
>>>>>>Page2.asp will collect the information from page1, and then
>>>>>>you also will have your second form. The second form will
>>>>>>use hidden fields populated with the form results from
>>>>>>page1. Page2 will also submit the information to a custom
>>>>>>script, called process.asp
>>>>>>
>>>>>>Process.asp will read the form information from page2 will
>>>>>>read the form data. Except for the yes/no, the information
>>>>>>will be stored in session variables. The yes/no will be read
>>>>>>and an if/.then statement will redirect to yes.asp or no.asp
>>>>>>
>>>>>>yes.asp and no.asp will read the session variables back in
>>>>>>and then you will collect more data. The info from the
>>>>>>session variables will be used to populate hidden fields
>>>>>>here as well. Continue on as needed
>>>>>>
>>>>>>Mike
>>>>>>
>>>>>>
>>>>>>
>>>>>>"Dianne" <Dianne@discussions.microsoft.com> wrote in message
>>>>>>news:2245DFCF-6A5A-48A5-9B0E-A394BCD7854F@microsoft.com...
>>>>>>:I know how to collect data using FP forms and Access.
>>>>>>: I know how to collect data and pass it to another ASP.
>>>>>>:
>>>>>>: I want to collect data on Page1.asp; when Submit is
>>>>>>pressed, the user is
>>>>>>: taken to Page2.asp where s/he is asked a Yes/No question
>>>>>>using option buttons.
>>>>>>: If user clicks Yes, s/he is directed to Yes.asp,
>>>>>>otherwise No.asp.
>>>>>>: Data collection continues from there.
>>>>>>: I don't need to save the Yes/No answer.
>>>>>>:
>>>>>>: TIA,
>>>>>>: Dianne
>>>>>>
>>>>>>
>>>>>>
>>>>
>>
>>