This is my code for confirmation box. When i press OK it should call the delete function. When I press Cancel it should return to the home page, but the file is deleted even though I choose Cancel. This is my code. What is wrong ?
var response = confirm ("Are you sure you want to permanently delete this user?");  
if (response)  
{  
  <% String userName =request.getParameter("userName");      
     del.del(userName);
   %> 
  window.location.href='adminHome.jsp';
}
else
{
  window.location.href='adminHome.jsp'; 
}
 
     
    