.NET? - This is the classic ASP area
Anyhow, here is
JS function that checks: is it checked or uncheked
function chqBoxState(oneelement)
{
var status = 'unChecked';
if (oneelement.checked)
{
status = 'checked';
alert('You have ' + status + ' the checkbox ');
}
else
{
alert('You have ' + status + ' the checkbox);
}
}
Wind is your friend
Matt