Hi ,
I am Beginner,
what is diffrent between client side and server side session management ?
if both viewstate,cookies,querystring and session varibles are same goal is store temp data ?
then why its Differentiated client side and server side??
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Nilesh MorePosted Dec 23, 2016, 5:23 AM
Mohammed Deeb HammoudehPosted Dec 22, 2016, 3:35 AM
Ø Server-side programming is writing a code that can run on the server, using languages supported by the server, it is possible to write code that executes on the server-side in JavaScript).
Ø Client-side programming is writing code that will run on the client, and is done in languages that can be executed by the browser, such as JavaScript.
§ viewstate,cookies,querystring and session called state managements , the following details
about their:
http://www.test.com/test.aspx?category=basic&price=100
In the URL path above, the query string starts with a question mark (?) and includes two attribute/value pairs, one called "category" and the other called "price."
For an overview, Session state is similar to application state, except that it is scoped to the current browser session. If different users are using your application, each user session will have a different session state. In addition, if a user leaves your application and then returns later, the second user session will have a different session state from the first.
Midhun TpPosted Dec 22, 2016, 1:57 AM