Ver Mensaje Individual
  #2 (permalink)  
Antiguo 29/07/2010, 15:43
manolo572
 
Fecha de Ingreso: mayo-2010
Mensajes: 78
Antigüedad: 14 años, 10 meses
Puntos: 0
Respuesta: como insetar datos a una tabla!!!

listo al parecer qdo un poco

Código ASP:
Ver original
  1. <form name="form6" >
  2.      <div align="center">
  3.        <fieldset style="width:50%">
  4.          <legend>Aprobacion Master Plan 6 </legend>
  5.            <table width="332" border="0" align="center">
  6.            <tr>
  7.              <td width="326" height="22" align="left"><div align="justify">Master Plan aprobado por:
  8.               <div>
  9.                 <div align="center">
  10.  <%
  11. Set prycxn = Server.CreateObject("ADODB.Connection")
  12.     prycxn.open "PROVIDER=SQLOLEDB; DATA SOURCE=VALP-SRV; UID=sa; PWD=serv; DATABASE=Proy"
  13.     SQL1="select * from Aprobar where categoria='"&consulta&"' "
  14.     set rs1_e = prycxn.execute(SQL1)
  15. if rs1_e.EOF=true then
  16. SQL1="INSERT INTO Aprobar(categoria, usuario, f_val)" &"VALUES('"&consulta&"', '"&nombre&"', '"&fecha_ing&"')"
  17.     set rs1_e = prycxn.execute(SQL1)
  18.  elseif application("valido")=true Then
  19.                 response.Write(rs1_e("usuario") &rs1_e("f_val"))
  20.                 rs1_e.Close
  21.       Set rs1_e = Nothing
  22.       prycxn.Close
  23.       Set prycxn = Nothing
  24.                end if %>
  25.               </div>
  26.              </div></td>
  27.            </tr>
  28.          </table>
  29.        </fieldset>
  30.   </div>
  31.        <p align="center">
  32.          <%if rs("perfil_usu")="administrador" then%>
  33.          <input type="submit" name="Aprobar Master Plan" id="Aprobar Master Plan" value="Aprobar Master Plan" onClick="link1('http://valp-page.la.pg.com/Proyectosi/Aprobar.asp')"/>
  34.          <%end if%>
  35.        
  36.   </p>
  37. </form>

ahora solo necesito que si existe el valor actualizarlo pero no se me ocurre como ayuda!!!