Hi all;
i have use this function for confirmation
function confirm_delete()
{
if (confirm("The checked file(s) will be deleted?")==true)
return true;
else
return false;
}
but how can i get that user has pressed Ok or Cancel Button .....i ma using C# .
Thanks in advance