Overuse of session.add("XXX",XXX) in ASP.Net,is this a safe practice to use...

  • Thread starter Thread starter jastoh
  • Start date Start date
J

jastoh

Guest
...sessionstates as global variables? there are ways to pass paramenters between pages that i know of:
a) global variables
b) using the session
c) passing of params via the URL, e.g. "response.redirect("userprofile.aspx?userid=" + txtUserId.text"

but i personally like using the session.add and retrieving the session parameters. will overusing this cause security issues? can anyone retrieve or change cookies which will affect my session states?

Thanks
 
Back
Top