QueryString Vs Session

sureshcd10

Regular
Joined
Dec 25, 2003
Messages
77
Can anyone tell me if there is any performance issues/advantages /disadvantages in using
QueryString when compared to Session ?
 
QueryString doesn't take up any server side resources, unlike Session variables which remain in memory for 20 minutes by default.
Large amounts of information howerver may be impractical to send via querystrings.
QueryStrings are also easily modified by a client and can lead to potential exploits or future problems if people have bookmarked the page.

It may help if you give a bit more detail regarding the kind of information and the use it will be put to.
 
Back
Top