Go back w/o loading the form?

Go back w/o loading the form?

am 13.02.2007 13:42:18 von Rolf Rosenquist

From a page with a form I collect the fields in the next page. The fields
are compared with a database and if a certain condition does not fit, I want
to go back to the first page with the form, and still keep all the other
fields as they were written.

If I use Response.Redirect the form will be loaded empty again. The same if
I use a button on page 2 with onClick="history.Back". Isn't there a way to
go back and keep the already written fields in the form on the first page,
as if the user just had hit the Back icon in IE?

/ Rolf

Re: Go back w/o loading the form?

am 13.02.2007 21:21:43 von Mike Brind

"Rolf Rosenquist" wrote in message
news:ObxMbR2THHA.996@TK2MSFTNGP02.phx.gbl...
> From a page with a form I collect the fields in the next page. The fields
> are compared with a database and if a certain condition does not fit, I
> want
> to go back to the first page with the form, and still keep all the other
> fields as they were written.
>
> If I use Response.Redirect the form will be loaded empty again. The same
> if
> I use a button on page 2 with onClick="history.Back". Isn't there a way to
> go back and keep the already written fields in the form on the first page,
> as if the user just had hit the Back icon in IE?
>

There are a number of ways to do this. Here's one that will cope with the
fact that one page posts to another.

ExampleForm.asp


Enter First name: value="<%=Session("FirstName")%>">


Enter Second name: value="<%=Session("SecondName")%>">




Action.asp

<%
Dim x, boolValid

For Each x in Request.Form
Session(x) = Request.Form(x)
Next

boolValid = True
'Validate form values
If 'any test fails Then
boolValid=false
End If
If boolValid = false Then Response.Redirect("ExampleForm.asp")
%>

--
Mike Brind

Re: Go back w/o loading the form?

am 13.02.2007 22:35:18 von Rolf Rosenquist

Mike, do you mean that I should then repopulate the form from the Session(x)
if I come back to the first page?
Isn't it too much waste of server memory to use session variables for normal
data between pages?

If someone uses the back button in the browser, all the fields are still
there. Couldn't I do the same thing with asp code?

/ Rolf



"Mike Brind" skrev i meddelandet
news:OiORSy6THHA.868@TK2MSFTNGP05.phx.gbl...
>
> "Rolf Rosenquist" wrote in message
> news:ObxMbR2THHA.996@TK2MSFTNGP02.phx.gbl...
> > From a page with a form I collect the fields in the next page. The
fields
> > are compared with a database and if a certain condition does not fit, I
> > want
> > to go back to the first page with the form, and still keep all the other
> > fields as they were written.
> >
> > If I use Response.Redirect the form will be loaded empty again. The same
> > if
> > I use a button on page 2 with onClick="history.Back". Isn't there a way
to
> > go back and keep the already written fields in the form on the first
page,
> > as if the user just had hit the Back icon in IE?
> >
>
> There are a number of ways to do this. Here's one that will cope with the
> fact that one page posts to another.
>
> ExampleForm.asp
>
>
>

Enter First name: > value="<%=Session("FirstName")%>">


>

Enter Second name: > value="<%=Session("SecondName")%>">


>


>
> Action.asp
>
> <%
> Dim x, boolValid
>
> For Each x in Request.Form
> Session(x) = Request.Form(x)
> Next
>
> boolValid = True
> 'Validate form values
> If 'any test fails Then
> boolValid=false
> End If
> If boolValid = false Then Response.Redirect("ExampleForm.asp")
> %>
>
> --
> Mike Brind
>
>

Re: Go back w/o loading the form?

am 14.02.2007 09:07:08 von Mike Brind

You can't rely on the back button maintaining form state. The back button
belongs to the browser, and as such is outside of the control of an asp
developer.

Personally, I get pages to post to themselves in the vast majority of cases.
I usually do this kind of thing:

<%
Sub ShowForm
%>

Enter First name: value="<%=Request.form("FirstName")%>">


Enter Second name: value="<%=Request.Fom("SecondName")%>">



<%
End Sub

If Not IsEmpty(Request.Form("submit")) Then
'Form posted
'validate values
'if validation fails, show form
Call ShowForm
Else
Success
Else
Call ShowForm
End If
%>

But of course, some forms need more than one page. If you think that using
session variables will be too much for your environment, you can use a
database, text files, hidden fields etc.

--
Mike Brind

--
Mike Brind







"Rolf Rosenquist" wrote in message
news:u6h1n%236THHA.1016@TK2MSFTNGP04.phx.gbl...
> Mike, do you mean that I should then repopulate the form from the
> Session(x)
> if I come back to the first page?
> Isn't it too much waste of server memory to use session variables for
> normal
> data between pages?
>
> If someone uses the back button in the browser, all the fields are still
> there. Couldn't I do the same thing with asp code?
>
> / Rolf
>
>
>
> "Mike Brind" skrev i meddelandet
> news:OiORSy6THHA.868@TK2MSFTNGP05.phx.gbl...
>>
>> "Rolf Rosenquist" wrote in message
>> news:ObxMbR2THHA.996@TK2MSFTNGP02.phx.gbl...
>> > From a page with a form I collect the fields in the next page. The
> fields
>> > are compared with a database and if a certain condition does not fit, I
>> > want
>> > to go back to the first page with the form, and still keep all the
>> > other
>> > fields as they were written.
>> >
>> > If I use Response.Redirect the form will be loaded empty again. The
>> > same
>> > if
>> > I use a button on page 2 with onClick="history.Back". Isn't there a way
> to
>> > go back and keep the already written fields in the form on the first
> page,
>> > as if the user just had hit the Back icon in IE?
>> >
>>
>> There are a number of ways to do this. Here's one that will cope with
>> the
>> fact that one page posts to another.
>>
>> ExampleForm.asp
>>
>>
>>

Enter First name: >> value="<%=Session("FirstName")%>">


>>

Enter Second name: >> value="<%=Session("SecondName")%>">


>>


>>
>> Action.asp
>>
>> <%
>> Dim x, boolValid
>>
>> For Each x in Request.Form
>> Session(x) = Request.Form(x)
>> Next
>>
>> boolValid = True
>> 'Validate form values
>> If 'any test fails Then
>> boolValid=false
>> End If
>> If boolValid = false Then Response.Redirect("ExampleForm.asp")
>> %>
>>
>> --
>> Mike Brind
>>
>>
>
>

Re: Go back w/o loading the form?

am 15.02.2007 01:11:10 von Rolf Rosenquist

Yes it works now with hidden fields, but I have found it is necessary to use
a submit button to get them back to page1. They do not appear, when I try to
do it in the background with Response.Redirect "page1,asp"

Is there a way to catch the hidden fields without a button?
/ Rolf




"Mike Brind" skrev i meddelandet
news:%23heEx8AUHHA.5100@TK2MSFTNGP06.phx.gbl...
> You can't rely on the back button maintaining form state. The back button
> belongs to the browser, and as such is outside of the control of an asp
> developer.
>
> Personally, I get pages to post to themselves in the vast majority of
cases.
> I usually do this kind of thing:
>
> <%
> Sub ShowForm
> %>
>
>

Enter First name: > value="<%=Request.form("FirstName")%>">


>

Enter Second name: > value="<%=Request.Fom("SecondName")%>">


>


> <%
> End Sub
>
> If Not IsEmpty(Request.Form("submit")) Then
> 'Form posted
> 'validate values
> 'if validation fails, show form
> Call ShowForm
> Else
> Success
> Else
> Call ShowForm
> End If
> %>
>
> But of course, some forms need more than one page. If you think that
using
> session variables will be too much for your environment, you can use a
> database, text files, hidden fields etc.
>
> --
> Mike Brind
>
> --
> Mike Brind
>
>
>
>
>
>
>
> "Rolf Rosenquist" wrote in message
> news:u6h1n%236THHA.1016@TK2MSFTNGP04.phx.gbl...
> > Mike, do you mean that I should then repopulate the form from the
> > Session(x)
> > if I come back to the first page?
> > Isn't it too much waste of server memory to use session variables for
> > normal
> > data between pages?
> >
> > If someone uses the back button in the browser, all the fields are still
> > there. Couldn't I do the same thing with asp code?
> >
> > / Rolf
> >
> >
> >
> > "Mike Brind" skrev i meddelandet
> > news:OiORSy6THHA.868@TK2MSFTNGP05.phx.gbl...
> >>
> >> "Rolf Rosenquist" wrote in message
> >> news:ObxMbR2THHA.996@TK2MSFTNGP02.phx.gbl...
> >> > From a page with a form I collect the fields in the next page. The
> > fields
> >> > are compared with a database and if a certain condition does not fit,
I
> >> > want
> >> > to go back to the first page with the form, and still keep all the
> >> > other
> >> > fields as they were written.
> >> >
> >> > If I use Response.Redirect the form will be loaded empty again. The
> >> > same
> >> > if
> >> > I use a button on page 2 with onClick="history.Back". Isn't there a
way
> > to
> >> > go back and keep the already written fields in the form on the first
> > page,
> >> > as if the user just had hit the Back icon in IE?
> >> >
> >>
> >> There are a number of ways to do this. Here's one that will cope with
> >> the
> >> fact that one page posts to another.
> >>
> >> ExampleForm.asp
> >>
> >>
> >>

Enter First name: > >> value="<%=Session("FirstName")%>">


> >>

Enter Second name: > >> value="<%=Session("SecondName")%>">


> >>


> >>
> >> Action.asp
> >>
> >> <%
> >> Dim x, boolValid
> >>
> >> For Each x in Request.Form
> >> Session(x) = Request.Form(x)
> >> Next
> >>
> >> boolValid = True
> >> 'Validate form values
> >> If 'any test fails Then
> >> boolValid=false
> >> End If
> >> If boolValid = false Then Response.Redirect("ExampleForm.asp")
> >> %>
> >>
> >> --
> >> Mike Brind
> >>
> >>
> >
> >
>
>