how to clear a seesion
-
hi iam using session("varname");now i want to clear this session how it wiil be possible plz
You can use session("varname")=null; to clear the session
Regards, LEE
-
hi iam using session("varname");now i want to clear this session how it wiil be possible plz
Hi Session object in ASP.NET implements ICollection interface So Session has a method Session.Remove("entityName") ; to remove all the items in Session collection one may use Session.RemoveAll(); Session.Clear();
P.S.
-
hi iam using session("varname");now i want to clear this session how it wiil be possible plz
By using
Session("varname").Remove
"The clue train passed his station without stopping." - John Simmons / outlaw programmer "Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon