1
Reply

how to reset c# session values from view

Durga Velusamy

Durga Velusamy

Sep 21 2016 6:12 AM
384
if i assign value to session  in controller 
 
System.Web.HttpContext.Current.Session["VAR"]="TEST";
 
now i 
i want to assign new values to session variable  from view 
 
System.Web.HttpContext.Current.Session["VAR"]="TESTED"; 
 
 
how this can acheive 

Answers (1)