ok, aqui esta el formulario, cambie txtorigen a origen pero nada aun.
formulario:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>EMPROVISA</title>
</head>
<body>
<div align="center">
<table width="854" height="814" border="0" bordercolor="#CBB163">
<tr>
<td width="844" height="188"><img src="imagenes_final/encabezado.jpg" width="850" height="204" /></td>
</tr>
<tr>
<td height="478"><div align="center">
<h1><strong>Solicitud de Compra </strong></h1>
</div>
<div align="center">
<table width="554" height="503" border="1" align="center">
<form method="post" action= "enviarcompra.asp" >
<tr>
<td width="174" bgcolor="#FFC062"><strong>Nombre:</strong></td>
<td width="364" bgcolor="#FFC062"><label>
<div align="left">
<input name="txtnombre" size="60" type="text" id="txtnombre" />
</div>
</label></td>
</tr>
<tr>
<td bgcolor="#FFC062"><strong>Empresa y Cargo:</strong></td>
<td bgcolor="#FFC062"><label>
<div align="left">
<input name="txtcargo" size="60" type="text" id="txtcargo" />
</div>
</label></td>
</tr>
<tr>
<td bgcolor="#FFC062"><strong>Telefono:</strong></td>
<td bgcolor="#FFC062"><label>
<div align="left">
<input name="txttelefono" size="60" type="text" id="txttelefono" />
</div>
</label></td>
</tr>
<tr>
<td bgcolor="#FFC062"><strong>Fax:</strong></td>
<td bgcolor="#FFC062"><label>
<div align="left">
<input name="txtfax" size="60" type="text" id="txtfax" />
</div>
</label></td>
</tr>
<tr>
<td bgcolor="#FFC062"><strong>Direccion e-mail :</strong></td>
<td bgcolor="#FFC062">
<label>
<div align="left">
<input name="origen" size="60" type="text" id="origen" />
</div></label></td></tr>
<tr>
<td colspan="2" bgcolor="#FFC062"><label><strong>Comentario:</strong>
<div align="center">
<textarea name="txtcomentario" rows="15" cols="60" id="txtcomentario"></textarea>
<br />
<br />
<br />
</div>
</label></td>
</tr>
<tr>
<td colspan="2" bgcolor="#FFC062"><label>
<div align="center">
<input type="submit" name="Submit" value="Enviar" />
</div>
</label></td>
</tr>
</form>
</table>
</div>
</p></td>
</tr>
<tr>
<td height="136"><p><img src="imagenes_final/baner_abajo.jpg" width="848" height="99" /></p> </td>
</tr>
</table>
<p><a href="index.asp"><strong>Menu Principal </strong></a></p>
</div>
</body>
</html>
el asp quedo asi:
<html>
<head >
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
body {
background-color: #FFFFCC;
}
-->
</style></head>
<body>
<%
Dim txtcomentario, txtcargo, txttelefono, txtfax, txtorigen
txtcomentario=request.Querystring ("txtcomentario")
txtcargo=request.Querystring ("txtcargo")
txttelefono=request.Querystring ("txttelefono")
txtfax=request.Querystring ("txtfax")
txtorigen=trim(request.Querystring("origen"))
if txtorigen = "" then
response.write "ERROR: origen esta vacio. Disculpe los inconvenientes, estamos revisando la falla. Gracias."
response.end
end if
body = txtcomentario & txtcargo & txttelefono & txtfax & txtorigen
Set correo=Server.CreateObject("CDO.Message")
correo.Subject="Solicitud de compra"
correo.From= request.Querystring("origen")
correo.To="[email protected]"
correo.Cc="[email protected]"
correo.Bcc="[email protected]"
correo.TextBody= body
correo.Send
set correo=nothing
%>
<p>
<script>
alert("SOLICITUD DE COMPRA ENVIADA, EN BREVE LE RESPONDEREMOS...EMPROVISA");
window.location = "index.asp";
</script>
</p>
</body>
</html>
teoricamente asi como esta deberia de funcionar, pero nada aun.
sera problema en el server????