Ver Mensaje Individual
  #6 (permalink)  
Antiguo 02/11/2007, 11:24
rezocrew
 
Fecha de Ingreso: octubre-2007
Ubicación: Santiago ,Chile
Mensajes: 146
Antigüedad: 17 años, 6 meses
Puntos: 0
Re: duda metodo get y post

en mi codigo asp tengo lo sgte :

<%@ Language=VBScript %>
<% Response.Expires=0 %>
<% Response.BUFFER = TRUE %>
<!-- #include file="include/dtr_manda_mail.Mit"-->
<%

nuevo = trim(request("nuevo"))

Rut = request("ch_1")
Primer_Nombre = request("ch_2")
Segundo_Nombre = request("ch_3")
Apellido_Paterno = request("ch_4")
Apellido_Materno = request("ch_5")


e_mail1 = "[email protected]"


subject = "saludos: "& Apellido_Materno

body = " RUT "& Rut &" Primer nombre: "& Primer_Nombre &" - Segundo nombre: "& Segundo_Nombre &" - Apellido paterno: "& Apellido_Paterno

call mailCreate(Dtr_mail)

call mailAddAdress (Dtr_mail, e_mail1)


call mailSend(Dtr_mail,"MANCLI","rezocrew",subject,body ,Dtr_OK )




%>