write the code to put int value into session and retrieve the same value of session to string
Anand N
int val = 32;Session["value"] = val;String str = Session["value"].ToString();
Set Session Value : Session["SessionName"] = value;Get Session Value : string str = Session["SessionName"].toString()