sureshcd10 Posted January 5, 2006 Posted January 5, 2006 Can anyone tell me if there is any performance issues/advantages /disadvantages in using QueryString when compared to Session ? Quote ima
Administrators PlausiblyDamp Posted January 5, 2006 Administrators Posted January 5, 2006 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. Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.