Ver Mensaje Individual
  #3 (permalink)  
Antiguo 04/04/2009, 11:42
Avatar de Esfinge02
Esfinge02
 
Fecha de Ingreso: septiembre-2008
Ubicación: Cd. Victoria Tam
Mensajes: 162
Antigüedad: 16 años, 3 meses
Puntos: 2
Pregunta Respuesta: Prblemas con los formularios

hola, tienes rason asi que dejo un ejemplo reducido de lo que estoy asiendo:

Cita:
<!--#include file="funciones/funciones.asp"-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>.:Prueva:.</title>

<link rel="stylesheet" type="text/css" href="messages.css" />
<script type="text/javascript" src="messages7.js"></script>

<SCRIPT LANGUAGE="JavaScript">
function validarFormulario() {
var form = document.datos;
var s = "no";
for ( var i = 0; i < form.optc.length; i++ ) {
if ( form.optc.checked ) {
s= "si";
break;
}
}
if ( s == "no" ){
alert( "Debe seleccionar una opcion" ) ;
}
}
</SCRIPT>

</head>

<body>

<form method="post" action="pruebaval.asp?opc=1" name="datos" onsubmit="">
<table width="70%" border="1" align="center">
<tr>
<td colspan="1">Formulario</td>
</tr>
<tr>
<td style="color:Red; font-size:12px;">
<input id="op1" type="radio" name="optc" value="1" />opt1 &nbsp;
<input id="op2" type="radio" name="optc" value="2" />opt2&nbsp;
<input id="op3" type="radio" name="optc" value="3" />opt3
</td>
</tr>
<tr>
<td><input id="Button1" type="submit" value="evaluacion" onClick="validarFormulario()"/></td>
</tr>
</table>
</form>
<form method="post" action="pruebaval.asp?opc=1" name="datos" onsubmit="return validate(this)">
<table width="70%" border="1" align="center">
<tr>
<td><textarea id="txtObservacion" name="txtObservacion" rows="2" style="width: 378px"></textarea></td>
</tr>
<tr>
<td><input id="guardar" type="submit" value="Guardar" name="guardar" /></td>
</tr>
</table>
</form>
</body>
</html>
si saben algo se los agradeseria.....