hola tengo un problema de depuracion que no puedo solucionarlo el error me dice 'document.value'no es un objeto ;el codigo es el sig:
function guardar(){
document.form.action="pizarra.asp";
if (document.comentario.value=="") {
alert("ingrese comentario")
return;
}
document.form.submit();
}
</script>
</head>
<body>
<form method="post" name="form" id="form" onclick ="guardar();">
<table width="669" height="130" border="2" align="left">
<tr><td width="92" height="38" class="fondo">Fecha</td>
<td class="fondo"><div align="center">Comentario</div></td>
</tr>
<tr>
<% while not rs.EOF %>
<td height="36"><%=FormatDateTime(rs("fecha"),2)%></td>
<td colspan="2"><%=rs("Comentario")%></td>
</tr>
<%rs.MoveNext
Wend
%>
</table>
<br>
<br><br><br><br><br><br><br><br><br><br><br><br><b r><br>
<table>
<tr>
<td width="77" height="34"></td>
<td class="fondo">Comentario</td>
</tr>
<tr>
<td height="21" class="fondo">Nuevo</td>
<td width="325"><textarea name="comentario" cols="50" id="comentario"></textarea> </td>
</tr>
<tr>
<td height="21"><div align="center">
<input type="submit" name="Btn1" value="Guardar">
</div></td>
<td><input type="reset" name="btn2" value="Borrar">
<input type="button" name="btn3" value="cerrar" onClick="cerrar()"></td>
</tr>
</table>
</form>