function redirect() {
    var category = document.getElementById("category").value;
    <% session.setAttribute("count", category); %>
}
This code gives an error in the setAttribute section. (category cannot be resolved to a variable) How can I fix it?
