c# - Sending data from one session to multiple session -


i facing problem in session,actually want send session information session suppose ex putting value in 1 text-box customer(like body weight) , want maintain session value other session.

if understand question, example save information:

this.session["weight"] = txtweight.text; 

then retrieve:

string weight = this.session["weight"]; 

Comments

Popular posts from this blog

facebook - android ACTION_SEND to share with specific application only -

python - Creating a new virtualenv gives a permissions error -

javascript - cocos2d-js draw circle not instantly -