Hola
Prueba de esta manera
Código javascript
:
Ver original<script language="javascript" type="text/javascript">
function handleHttpResponse() {
if (http.readyState == 4) {
if (http.status == 200) {
if (http.responseText.indexOf('invalid') == -1) {
// Armamos un array, usando la coma para separar elementos
results = http.responseText.split(",");
document.getElementById("campoMensaje").innerHTML = results[0];
document.getElementById("campoMensaje1").innerHTML = results[1];
enProceso = false;
}
}
}
}
function AJAXpr_tipo() {
if (!enProceso && http) {
var valortipo = escape(document.getElementById("pr_tipo").value);
var valor = escape(document.getElementById("pr_precioprovee").value);
var url = "../ajax/valida_pro.asp?pr_tipo="+ valortipo + "&pr_precio=" + valorprecio;
http.open("GET", url, true);
http.onreadystatechange = handleHttpResponse;
enProceso = true;
http.send(null);
}
}
function getHTTPObject() {
var xmlhttp;
/*@cc_on
@if (@_jscript_version >= 5)
try {
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
} catch (E) { xmlhttp = false; }
}
@else
xmlhttp = false;
@end @*/
if (!xmlhttp && typeof XMLHttpRequest != 'undefined') {
try {
xmlhttp = new XMLHttpRequest();
} catch (e) { xmlhttp = false; }
}
return xmlhttp;
}
var enProceso = false; // lo usamos para ver si hay un proceso activo
var http = getHTTPObject(); // Creamos el objeto XMLHttpRequest
</script>
Código asp:
Ver originalpr_tipo = int(Request.QueryString("pr_tipo"))
pr_precio = Trim(Request.QueryString("pr_precio"))
If Int(pr_tipo) = 0 and pr_precio = "" Then
sHTML = "<img src=""../_imag/tinto.jpg"" width=""10"" height=""10"" />,"
ElseIf Int(pr_tipo) = 1 and pr_precio = "" Then
sHTML = "<img src=""../_imag/blanco.jpg"" width=""10"" height=""10"" />,"
End If
if pr_precio <> "" Then
sHTML = sHTML & "<table border=""0"" cellpadding=""2"" cellspacing=""0"">"
sHTML = sHTML & " <tr>"
sHTML = sHTML & " <td width=""95""><h3>Precio V.Oferta</h3></td>"
sHTML = sHTML & " <td> </td>"
sHTML = sHTML & " </tr>"
sHTML = sHTML & " <tr>"
sHTML = sHTML & " <td><h3>Precio Mercado</h3></td>"
sHTML = sHTML & " <td> </td>"
sHTML = sHTML & " </tr>"
sHTML = sHTML & "</table>"
response.write(sHTML)
End If
Suerte