I think he means that he is using session as a crewd way to timeout a user
by setting session.timeout = 10 and checking for it on each postback.
--
Regards,
Alvin Bruney [ASP.NET MVP]
Got tidbits? Get it here...
http://tinyurl.com/3he3b
"Kevin Spencer" <kevin@takempis.com> wrote in message
news:%23%23MS0$O7DHA.1852@TK2MSFTNGP10.phx.gbl...[color=blue]
> The first part of your message is very confusing to me, as Sessions time[/color]
out[color=blue]
> all by themselves. However, I can help you with your other question.
>[color=green]
> > When I call other pages, I often use parameters in HREF link.
> >
> > I was wondering if it was better to pass parameter from page to page as
> > session variable instead of doing it in HREF link?[/color]
>
> You have a couple of issues here. When you pass data via URL, you are
> exposing it to the user, which can be a security risk, so one[/color]
consideration[color=blue]
> is how sensitive the data is. If it's not sensitive, you're fine, as long[/color]
as[color=blue]
> you make sure that the user can't create a parameterized URL that would
> cause some problem. One of the advantages of using QueryString parameters[/color]
is[color=blue]
> that the user can bookmark a dynamic page, as the bookmark will have the
> parameters in it.
>
> As for Sessions, they can be problematic as well, since they time out[/color]
after[color=blue]
> a certain interval of inactivity. As long as you make sure to handle this
> eventuality, Session is fine.
>
> --
> HTH,
> Kevin Spencer
> .Net Developer
> Microsoft MVP
> Big things are made up
> of lots of little things.
>
>
> "+The_Taco+" <dominic.feron@dessausoprin.com> wrote in message
> news:eZ2jciO7DHA.488@TK2MSFTNGP12.phx.gbl...[color=green]
> > I already use session variable in my project to set a session timeout[/color][/color]
when[color=blue][color=green]
> > the user doesn't do anything for 10 minutes.
> >
> > When I call other pages, I often use parameters in HREF link.
> >
> > I was wondering if it was better to pass parameter from page to page as
> > session variable instead of doing it in HREF link?
> >
> > Thx for the hint !
> >
> >[/color]
>
>[/color]