asp
<% %> <html> <style type="text/css"> <!-- .Estilo1 { font-size: 14px; font-weight: bold; } .Estilo4 {font-size: 14px} --> </style> <head> <title>:: Ingreso de Solicitud de Compra ::</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <link href="estilos/estilos_n.css" rel="stylesheet" type="text/css"> <script src="librerias/numeros.js"></script> </head> <body bgcolor="#FFFFEF" > <table> <td width="800"> <fieldset> <form name="Ingreso_Alumnos" method="post" enctype="multipart/form-data" action="GrabaAlumnos.asp"> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr bgcolor="#CCCCCC"><td colspan="3"><span class="Estilo1"><b>Ingreso de Alumnos</b></td></tr> <tr><td colspan="3"> </td></tr><!-- -- --> <tr> <td class="destaca"><strong>ID</strong>:</td> <td width="25" class="destaca">:</td> <td ><input name="id" type="Text" id="nombre" size="30" maxlength="10" class="destaca"></td> </tr><!-- -- --> <tr> <td class="destaca"><strong>DES</strong>:</td> <td width="25" class="destaca">:</td> <td ><input name="des" type="Text" id="nombre" size="30" maxlength="10" class="destaca"></td> </tr><!-- -- --> <tr> <td class="destaca"><strong>FECHA</strong>:</td> <td width="25" class="destaca">:</td> <td ><input name="fecha" type="Text" id="nombre" size="30" maxlength="10" class="destaca"></td> </tr><!-- -- --> <tr><td colspan="3" align="center"> </td></tr> <tr><td colspan="3" align="center"><input type="submit" name="grabar" value="Grabar" class="destaca"></td></tr> </table> </form> </fieldset> </body> </html>
FORMULARIO : IngresoAlumnos.asp
---------------------------------------------------------------------------------------------------------------------------------
asp
<!-- #INCLUDE FILE="librerias/funciones.inc" --> <!-- #INCLUDE FILE="librerias/dsn.inc" --> <% Dim id,des,fecha id = Request.Form("id") des = Request.Form("des") fecha = Request.Form("fecha") 'Creamos la conexion a la BD. Dim cn Set cn = Server.CreateObject("ADODB.Connection") 'set dbconnection = server.createobject("ADODB.connection") cn.open SESSION("DSN_Ejemplo") dim strSQL strSQL = "INSERT INTO Ejemplo(id,des,fecha) " strSQL = strSQL & " VALUES('" & id & "','" & des & "','" & fecha & "')" on error resume next if cn.Errors.Count > 0 then ErrMsg = replace( cn.Errors(0).Description, "[Microsoft][ODBC SQL Server Driver][SQL Server]", " " ) rs1.close cn.close set rs1 = Nothing set cn = Nothing 'xx = vererror(ErrMsg,"Ha ocurrido un Error" ) response.write(ErrMsg) response.end end if 'Dim Usuario, Clave, Nombre, Domicilio, CP, Telefono, Mail 'Usuario = Request.Form("Usuario") 'Clave = Request.Form("Clave") 'Nombre = Request.Form("Nombre") 'Domicilio = Request.Form("Domicilio") 'CP = Request.Form("CP") 'Telefono = Request.Form("Telefono") 'Mail = Request.Form("Mail") 'Dim cn 'Set cn = Server.CreateObject("ADODB.Connection") 'cn.Open("DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath("data.mdb")) 'dim strSQL 'strSQL = "INSERT INTO Usuarios(Usuario,Clave,Nombre,Domicilio,CP,Telefono,Mail) " 'strSQL = strSQL & " VALUES('" & Usuario & "','" & Clave & "','" 'strSQL = strSQL & Nombre & "','" & Domicilio & "','" & CP & "','" 'strSQL = strSQL & Telefono & "','" & Mail & "')" 'cn.Execute(strSQL) 'cn.close 'set cn= nothing %> <html> <title>Graba Solicitud de Compra</title> <body> <html> <title>Graba Solicitud de Comp</title> <p> </p> <table width="45%" border="0" align="center" cellpadding="0" cellspacing="0" > <tr> <td width="50%" align="center"><input type="button" class="boton" value="Volver" onClick="window.location.href='solicitud_compra.asp';"></td> </tr> </table> </body> </html> <% 'end if 'else ' ErrMsg = "" ' zz=vererror(ErrMsg,"Sin Conexión a Intranet") ' response.end 'end if %>
FORMULARIO:GrabaAlumnos.asp
necesito guardar un dato cesar