[ic] disable user login

Chris Snow interchange-users@icdevgroup.org
Wed May 7 01:51:01 2003


----- Original Message -----
From: "Michael Goldfarb" <mikeg@contactdesigns.com>
To: <interchange-users@icdevgroup.org>
Sent: Tuesday, May 06, 2003 6:52 PM
Subject: RE: [ic] disable user login


> If you are referring to the fact that IC automatically fills in the
> fields on the checkout page, you can remove this functionality by
> removing the "value=[value xxx]" from the HTML input fields.
>
> For instance, change the text field for First Name from:
> <INPUT TYPE=text NAME=fname VALUE="[value fname]" size="20"
> maxlength="20">
>
> to:
> <INPUT TYPE=text NAME=fname size="20" maxlength="20">
>
> The only problem with this of course is that if the form needs to
> refreshed during checkout (when people press recalculate, for
> server-side form validation, etc.), that the fields will need to be
> re-entered each time.
>
> Since I don't know your situation well enough it is hard to offer better
> advice.
>
> Maybe you could try setting the values for all of the form elements to
> "" on the cart page. That way, when people go to the cart page, it will
> reset the values stored in session before they get to the checkout page.
> This will allow the values on the checkout page to be blank on initial
> loading, but persist after the form is refreshed.
>
> HTH

I 'think' I would like to expire the session after the customer has checked
out (i.e. after process.html has been displayed).  Is there a way of doing
this?

TIA.