quiero que me redirecciones a una pagina como ejemplo : google o youtube etc
es posible hacerlo?
Código ASP:
Ver original
<%@ Language="VBScript" %> <!--#include file="para_carrito.asp" --> <script> function validar_radio() { var total, valor; total = document.getElementsByName('compra').length; for (var i = 0; i < total; i++) { valor = document.getElementsByName('compra').item(i).checked; if (valor) { nom = document.getElementsByName('compra').item(i).value; return true; } } alert("Debe seleccionar una opcion") return false; } </script> <!DOCTYPE html> <html lang="es"> <head> <meta charset="iso-8859-1" /> <title></title> </head> <body> <div style="width: 880px;height: 380px; background-color: #272323;"> <div style="width: 880px;height: 100px;text-align: center;"><img src="css/css_administrador/images/baneer.jpg" style="width: 870px;height: 100px;"></div> <div style="text-align: center;width: 880PX;"> <form id="form_radio" name="form_radio" action="www.google.cl" method="post" onsubmit="return validar_radio()" > <table style="margin-left: 350px;padding-top: 55px;color: #fff;border: 2px;border-color: #fff"> <tr> <td><input type="radio" id="compra" name="compra" value="1" >DEPOSITO BANCARIO</td> </tr> <tr> <td ><input type="radio" id="compra" name="compra" value="2">TRANSFERENCIA BANCARIA</td> </tr> <tr> <td><input type="radio" id="compra" name="compra" value="3">WEBPAY</td> </tr> <tr> <td><input type="radio" id="compra" name="compra" value="4">SERVIPAG</td> </tr> <tr style="width: 300px;text-align: center;padding-top: 40px;"><td><input type="submit" value="Siguiente" ></td></tr> </table> </form> </div> </div> </body> </html>