Clauido José Postado Janeiro 14, 2009 Denunciar Share Postado Janeiro 14, 2009 Algeum pode me dizer que erro é esse estou tentando enteder o ajax, este erro está linha que chama a div vou postar o coidgo.<html> <head> <title>UPDATE COM AJAX</title> <link href="estilos.css" rel="stylesheet" type="text/css" /> <script language="javascript" src="ajax.js"></script> <script language="javascript"> function trazdados() { var arr = new String(frmCliente.txNome.value); arr = arr.split('|'); frmCliente.codCliente.value = arr[0]; var oHTTPRequest = createXMLHTTP(); oHTTPRequest.open("post", "objcliente.asp", true); oHTTPRequest.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); oHTTPRequest.onreadystatechange=function(){ if (oHTTPRequest.readyState==4){ document.all.Conteudo.innerHTML = oHTTPRequest.responseText;}} oHTTPRequest.send("cCliente=" + frmCliente.codCliente.value); } function gravar() { var arr = new String(frmCliente.txNome.value); arr = arr.split('|'); frmCliente.codCliente.value = arr[0]; var oHTTPRequest = createXMLHTTP(); oHTTPRequest.open("post", "gravar.asp", true); oHTTPRequest.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); oHTTPRequest.onreadystatechange=function(){ if (oHTTPRequest.readyState==4){ document.all.divCliente.innerHTML = oHTTPRequest.responseText;}} oHTTPRequest.send("Cliente=" + frmCliente.codCliente.value); } </script> </head> <body> <form name="frmCliente" id="frmCliente" method="post" action=""> <table width="466" border="0" align="center" cellpadding="3" cellspacing="3" class="Tabela"> <tr> <td colspan="3" align="center" class="Titulo">CADASTRO DE CLIENTES </td> </tr> <tr> <td colspan="3"> </td> </tr> <tr> <td width="35%" class="SubTitulo">Nome cliente: </td> <td colspan="2"><input name="txNome" type="text" id="txNome" size="50" maxlength="20" /></td> </tr> <tr> <td><input name="codCliente" type="hidden" id="codCliente" value="<%=Cliente%>"></td> <td colspan="2"><div id="Conteudo"> <table width="100%" border="0" cellspacing="3" cellpadding="3"> <tr> <td> </td> </tr> </table> </div></td> </tr> <tr> <td> </td> <td width="20%"><input name="butBusca" type="button" id="butBusca" value="LOCALIZAR" onclick="trazdados();"></td> <td width="45%"> </td> </tr> <tr> <td> </td> <td colspan="2"> </td> </tr> </table> </form> </body> </html>resolvi era tirar o language="javascript"> funcionou Citar Link para o comentário Compartilhar em outros sites More sharing options...
Pergunta
Clauido José
Algeum pode me dizer que erro é esse estou tentando enteder o ajax, este erro está linha que chama a div vou postar o coidgo.
resolvi era tirar o language="javascript"> funcionou
Link para o comentário
Compartilhar em outros sites
0 respostass a esta questão
Posts Recomendados
Participe da discussão
Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.