How to pass the Values from aspx page to html page using session variable
Kanakaraj V
Take one public variable likepublic string strSessionValue = null;then in Page_load event, usestrSessionValue =Convert.ToString(Session["<XXXXX>"]);Now use this variable in aspx page like<%=strSessionValue%>
ASPX Page: