
How to iterate session value onebyone in JavaScript

hi,
you can also use hidden field to store the session value and read that value in javascript.
for example,
session["name"]="well"; hiddenctrl.value=session["name"].ToString(); client-side:
javascript:
var sessionvalue= document.getElementById('hiddenctrl').value;
hope it helps

But this will help only for single value not for list of Items. How i will iterate all item if a list is stored in session.
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.