passing parameter in asp.net c# -


possible duplicate:
passing data between asp.net pages

how pass value of textbox 1 page page in asp.net c# need, not using url string query method. need passing 1 page without passing values url.

use session state.

session["textboxvalue"] = textbox1.text; 

then, retrieve on other page:

string val = session["textboxvalue"]; 

Comments

Popular posts from this blog

linux - Mailx and Gmail nss config dir -

c# - Is it possible to remove an existing registration from Autofac container builder? -

php - Mysql PK and FK char(36) vs int(10) -