I get a session variable from a login form and then redirect to another page:
String a = Login1.UserName;
Session["user"] = a;
Response.Redirect("~/Home.aspx");
In Home.aspx
I wish to display in a div something like " Hello -Session["user"]
" . How can I get the session var and use it in the html code?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…