Caching in .NET

  • Thread starter Thread starter C
  • Start date Start date
C

C

Hi,

I have a page where users can input some data into input
controls.

To save this data the user must be logged in.

If they click on Save they get an alert to indicate that
they must login in order to save their details.

What I want is that when they log in the details that they
just entered are populated in the input boxes.

How do I achieve this?

Any websites / links or advice is much appreciated.

Thanks,
C
 
So, if I understand, you ask them to fill out a form. *After* they have
filled it out, you say "oh, I forgot, you gotta login first." and then
redirect them?

I'd suggest putting it into a cookie (Response.SetCookie) then reading the
cookie values back into the field. This is probably your best solution.

Or, you could reformat the flow of your app, so that they could just log in
first :).

-mike
MVP
 
Back
Top