I don't understand. I have a link on my page that looks like this:
...which fires this function:
... which supposedly submits this form:
Through experimentation, I've discovered that the onClick event works... the function works... and the form seems to get submitted, but without the post data, so nothing actually happens. Have I got something wrong? Thanks in advance. 
--Ryan
Code:
<a href="javascript:;" onClick="deleteNom();">Delete Nomenclature</a>
Code:
function deleteNom() {
if (confirm("Really delete this Nomenclature and all items under it?")) {
form3.submit();
}
}
Code:
<form name="form3" id="form3" method="POST" action="<%=MM_editAction%>">
<input type="hidden" name="MM_delete" value="form3">
<input type="hidden" name="MM_recordId" value="<%= rsDetail.Fields.Item("EquipmentID").Value %>">
</form>
--Ryan