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?