It could just be that the client doesn't want to use a session variable. The
funny thing is, the web is stateless anyways so maybe the client is getting
confused or means something slightly different. You could use the Membership
provider built right into ASP.Net with FormsAuthentication to take care of
the maintaining logged in user state against a db. It does the heavy work
and enables you to get the username as well as the users'd id through the
provideruserkey property.
I typically avoid a lot of state across pages. You can use viewstate within
a page if you need to to maintain the state within a page if absolutely
necessary. Perhaps the client is concerned about performance hits for using
sessionstate variables or possible issues with using sessionstate in a
webfarm or webgarden.

Signature
Hope this helps,
Mark Fitzpatrick
Former Microsoft FrontPage MVP 199?-2006
Thanks for the reply Mark. Yes the client does not want to use session
variables. I have to pass first name, Last Name, Dealer Number, UserKey etc
across the pages.
Can I store the above information in the membership provider. I was planning
to pass them using hidden variables, Query strings etc. Please suggest
Regards,SF
> It could just be that the client doesn't want to use a session variable. The
> funny thing is, the web is stateless anyways so maybe the client is getting
[quoted text clipped - 19 lines]
> >
> > Regards,
SF - 30 Oct 2006 09:07 GMT
The other reason we don't want to session variables is because of the
performance reasons. Will Profile object have the same sort of performance
hit as compared to the session object?
> Thanks for the reply Mark. Yes the client does not want to use session
> variables. I have to pass first name, Last Name, Dealer Number, UserKey etc
[quoted text clipped - 27 lines]
> > >
> > > Regards,
Mark Fitzpatrick - 12 Nov 2006 15:04 GMT
From what I've seen of the profile and membership providers they do a great
job performance-wise. It's also possible to combine them with some caching
techniques to get better performance. For example, if you have a control
that shows their name on each page if they're logged in, you could create a
caching mechanism to store the profile information based on their ID.

Signature
Hope this helps,
Mark Fitzpatrick
Former Microsoft FrontPage MVP 199?-2006
> The other reason we don't want to session variables is because of the
> performance reasons. Will Profile object have the same sort of performance
[quoted text clipped - 43 lines]
>> > >
>> > > Regards,
SF - 23 Nov 2006 09:59 GMT
Thanks for the reply. Client does not want to use any state whatsoever on the
server side. So I ws planning to use client side state management.
Thanks,
> From what I've seen of the profile and membership providers they do a great
> job performance-wise. It's also possible to combine them with some caching
[quoted text clipped - 49 lines]
> >> > >
> >> > > Regards,