Jump to content
Fórum Script Brasil
  • 0

ERRO COM UPDATE EM ASP =(


latencyy

Question

Aqui o arquivo de validação dos dados

<!--#include file="conex_bd.asp"-->

<%
titulo=request.form("tit_antigo")
tipo=request.form("tipo")
novo_titulo=request.form("titulo")
descricao=request.form("descricao")
texto=request.form("texto")

Dim sql
sql ="select * from tb_noticia where titulo='"&session("titulo")&"' and descricao='"&descricao&"'"
Set rs=conObj.Execute(sql)

if rs.EOF then
response.redirect("alterar_senha_erro.asp")
else
upsql="UPDATE tb_noticia SET novo_titulo='"&novo_titulo&"' , '"&tipo&"' , '"&descricao&"' , '"&texto&"' where id_noticia='"&id_noticia&"'"
set upsql=conObj.Execute(upsql)


conObj.close
Response.Redirect("sucesso_alterar_senha.asp")
end if
%>
ela ta puxando valores dessa pagina :
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<!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=utf-8" />
<title>Documento sem título</title>
</head>

<body>
<form id="form1" name="form1" method="post" action="alteracao_noticia.asp">
  <p>Digite o Titulo antigo da noticia : 
    <label for="tit_antigo"></label>
    <input type="text" name="tit_antigo" id="tit_antigo" />
  </p>
  <p>Altera a noticia logo abaixo</p>
  <p>Tipo<br />
    <input type="radio" name="tipo" value="anuncio" />
    Anuncio<br />
    <input type="radio" name="tipo" value="noticia" checked="checked" />
    Noticia<br />
    <br />
  </p>
  <p>Titulo
    <input name="titulo" type="text" id="titulo" />
  </p>
  <p>Descrição
    <input name="descricao" type="text" id="descricao" />
  </p>
  <p>Texto :<br />
    <textarea name="texto" cols="45" rows="5" id="texto">Digite o seu texto aqui</textarea>
    <br />
    <input type="submit" value="cadastrar" />
    <input type="button" value="voltar" onclick="form.action='painel_usuario.asp';form.submit()" />
  </p>
</form>
</body>
</html>

alguém sabe porque não ta atualizando os dados??

Edited by kuroi
Adicionar tag CODE
Link to comment
Share on other sites

3 answers to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...