Answer: RemoveAt() static method of Session variable is used to remove keys or items at specified position.
For Example:-
Session.Add("Name", "Vishal");
Session.Add("Email_Id", "vish@abc.com");
Session.Add("Ph-No", "1234567890");
Session.RemoveAt(1);
Asked In: Many Interviews |
Alert Moderator