Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

Rafael VS

Atualizando dados

Recommended Posts

Bom dia pessoal! Estou tentando fazer uma página para atualização de uma agenda de telefones. Porém, quando clico no botão GRAVAR, não acontece nada.. Eu não conheço muito de asp, estou começando agora. Inclusive, esta página é para que eu possa praticar. Alguém pode me ajudar? Segue abaixo o script.Obrigado. Rafael. ----------------------------------------------------------------------------------------------------<!--#include file='conecta.asp'--><%' Recebe o código por parametro para localizar a loja da página cons_alt_tel.aspxCodigo = Request("codigo")sql = "SELECT * FROM centro_custo WHERE num_centro_custo = "&xCodigoSet rs = conn.Execute(sql)xAcao = Request("cdmGravar")If xAcao <> " " Then xFone1 = Request("txtfoneloja") xFone2 = Request("txtfoneloja2") xEscritorio = Request("txtescritorio") xContato = Request("txtcontato") sql1 = "UPDATE centro_custo SET num_fone1_centro_custo = '" &xFone1& "', num_ramal1_centro_custo = '" &xFone2& "', num_fone2_centro_custo = '" &xEscritorio& "', nom_contato1_centro_custo = '" &xContato& "' WHERE num_centro_custo = '" &xCodigo& "' "Set rs = conn.Execute(sql)End if %><html><head><title>Sistema de telefones - Alteração</title></head><body bgproperties="fixed" bgcolor="#F8F4FF"><form action="alt_tel.asp" method="post"><div align="center"> <center> <table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="643" height="36"> <tr> <td width="643" height="36"> <p align="center"> <img border="0" src="../Logo_Cent_Coml_Sist.jpg"></td> </tr> </table> </center></div><div align="center"> <center> <table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="649" height="10"> <tr> <td width="634" height="18" align="center" colspan="4"><font face="Tahoma" size="2"><% = rs("nome")%></font><b><font face="Tahoma" color="#FF0000">Alteração no cadastro  </font></b></td> </tr> <tr> <td width="101" height="179" align="center" rowspan="9"> </td> <td width="112" height="16" align="right"><b><font face="Tahoma" size="2"> Razão Social:</font></b></td> <td width="257" height="16" align="center"><%=rs("nome")%></td> <td width="170" height="179" align="center" rowspan="9"> </td> </tr> <tr> <td width="112" height="22" align="right"><b><font face="Tahoma" size="2"> Nome Fantasia:</font></b></td> <td width="257" height="22" align="center"><%=rs("nom_interno_centro_custo")%></td> </tr> <tr> <td width="112" height="16" align="right"><b><font face="Tahoma" size="2"> Arco:</font></b></td> <td width="257" height="16" align="center"><%=rs("desc_localiz")%></td> </tr> <tr> <td width="112" height="18" align="right"><b><font face="Tahoma" size="2"> Telefone Loja:</font></b></td> <td width="257" height="18" align="center"> <input type="text" name="txtfoneloja" size="28" style="border-style: solid; border-width: 1" value="<%Response.Write rs("num_fone1_centro_custo")%>"></td> </tr> <tr> <td width="112" height="16" align="right"><b><font face="Tahoma" size="2"> Telefone Loja 2:</font></b></td> <td width="257" height="16" align="center"> <input type="text" name="txtfoneloja2" size="28" value="<%Response.Write rs("num_ramal1_centro_custo")%>" style="border-style: solid; border-width: 1"></td> </tr> <tr> <td width="112" height="15" align="right"><b><font face="Tahoma" size="2"> Tel. Escritório:</font></b></td> <td width="257" height="15" align="center"> <input type="text" name="txtescritorio" size="28" value="<%Response.Write rs("num_fone2_centro_custo")%>" style="border-style: solid; border-width: 1"></td> </tr> <tr> <td width="112" height="13" align="right"><b><font face="Tahoma" size="2"> Contato:</font></b></td> <td width="257" height="13" align="center"> <input type="text" name="txtcontato" size="28" value="<%Response.Write rs("nom_contato1_centro_custo")%>" style="border-style: solid; border-width: 1"></td> </tr> <tr> <td width="112" height="15" align="right"></td> <td width="257" height="15" align="center"></td> </tr> <tr> <td width="112" height="20" align="center"> <p align="right"><b><font face="Tahoma" size="2"> Ações:</font></b></td> <td width="257" height="20" align="center"> <input type="button" value="Gravar" name="cmdgravar" style="border-style: solid; border-width: 1"></td></tr> </table> </center></div> </form><% Set conn = Nothing %></body> </html>

Compartilhar este post


Link para o post
Compartilhar em outros sites

O problema tá aqui oh:<input type="button" value="Gravar" name="cmdgravar" style="border-style: solid; border-width: 1"></td></tr>mude para:<input type="submit" value="Gravar" name="cmdgravar" style="border-style: solid; border-width: 1"></td></tr>

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.