
turboibest
Membros-
Total de itens
25 -
Registro em
-
Última visita
Sobre turboibest

turboibest's Achievements
0
Reputação
-
obrigado Alex, você me ajudou muito....
-
E ae galera, beleza? To preceisando de ajuda em uma coisa, quero por uma música de fundo em uma animação e eu queria fazer um botão onde o usuário que acessa o site desligue a música e se quiser ligue novamente, se puderem me ajudar, eu agradeço. Desde já muito obrigado...
-
valeu cara, brigadão....
-
Olá, Galera estou tentando fazer o seguinte efeito, o usuario passa o mouse em cima do botão e ele executa a animação e depois que tira o mouse de cima do botão, ele faz um efeito de saida, alguém pode me ajudar? Se puderem eu agradeço.
-
Com muito custo consegui resolver o problema, o segue o código como ficouu: <!--#include file="travar.asp"--> <!--#include file="conecta.asp"--> <% titulo=request.form("titulo") logo=request.form("logo") cor1=request.form("cor1") cor2=request.form("cor2") cor3=request.form("cor3") texto_cor1=request.form("texto_cor1") fundo_br=request.form("fundo_br") titulo1=request.form("titulo1") texto1=request.form("texto1") link1=request.form("link1") im1=request.form("im1") titulo2=request.form("titulo2") texto2=request.form("texto2") link2=request.form("link2") im2=request.form("im2") titulo3=request.form("titulo3") texto3=request.form("texto3") link3=request.form("link3") im3=request.form("im3") titulo4=request.form("titulo4") texto4=request.form("texto4") link4=request.form("link4") im4=request.form("im4") titulo5=request.form("titulo5") texto5=request.form("texto5") link5=request.form("link5") im5=request.form("im5") texto_adicional=request.form("texto_adicional") SQLConsulta = "UPDATE canal SET logo='"& logo &"', cor1='"& cor1 &"', cor2='"& cor2 &"', cor3='"& cor3 &"', texto_cor1='"& texto_cor1 &"', fundo_br='"& fundo_br &"', im1='"& im1 &"', titulo1='"& titulo1 &"', texto1='"& texto1 &"', link1='"& link1 &"', im2='"& im2 &"', titulo2='"& titulo2 &"', texto2='"& texto2 &"', link2='"& link2 &"', im3='"& im3 &"', titulo3='"& titulo3 &"', texto3='"& texto3 &"', link3='"& link3 &"', im4='"& im4 &"', titulo4='"& titulo4 &"', texto4='"& texto4 &"', link4='"& link4 &"', im5='"& im5 &"', titulo5='"& titulo5 &"', texto5='"& texto5 &"', link5='"& link5 &"', texto_adicional='"& texto_adicional &"' WHERE titulo='"& titulo &"'" Set Consulta = Conexao.Execute(SQLConsulta) If err.number>0 then response.write "Ocorreram erros no script:" & "<P>" response.write "Número=" & err.number & "<P>" response.write "Descrição=" & err.description & "<P>" response.write "Help Context=" & err.helpcontext & "<P>" response.write "Help Path=" & err.helppath & "<P>" response.write "Native Error=" & err.nativeerror & "<P>" response.write "Source=" & err.source & "<P>" response.write "SQLState=" & err.sqlstate & "<P>" else response.write "Nenhum problema aconteceu!" & "<P>" end if IF Conexao.errors.count> 0 then response.write "Ocorreram erros com o banco de dados" & "<P>" response.write SQLConsulta & "<P>" for counter= 0 to Consulta.errors.count response.write "Número do erro:" & Conexao.errors(counter).number & "<P>" response.write "Descrição --> " & Conexao.errors(counter).description & "<P>" next else response.redirect "atualizado.asp" end if Set Consulta=Nothing Conexao.close Set conexao=nothing %> Obrigado pela ajuda.....
-
eu desenvolvi um código para usar no para atualizar os registros no banco de dados, mais tá dando o seguinte erro: Tipo de erro: Microsoft JET Database Engine (0x80004005) A operação deve usar uma consulta atualizável. /administracao/atualizardados.asp, line 42 Segue o código: <!--#include file="travar.asp"--> <!--#include file="conecta.asp"--> <% Response.addHeader "pragma", "no-cache" Response.CacheControl = "Private" Response.Expires = 0 %> <% titulo = request.form("titulo") logo = request.form("logo") cor1 = request.form("cor1") cor2 = request.form("cor2") cor3 = request.form("cor3") texto_cor1 = request.form("texto_cor1") fundo_br = request.form("fundo_br") im1 = request.form("im1") titulo1 = request.form("titulo1") texto1 = request.form("texto1") link1 = request.form("link1") im2 = request.form("im2") titulo2 = request.form("titulo2") texto2 = request.form("texto2") link2 = request.form("link2") im3 = request.form("im3") titulo3 = request.form("titulo3") texto3 = request.form("texto3") link3 = request.form("link3") im4 = request.form("im4") titulo4 = request.form("titulo4") texto4 = request.form("texto4") link4 = request.form("link4") im5 = request.form("im5") titulo5 = request.form("titulo5") texto5 = request.form("texto5") link5 = request.form("link5") texto_adicional = request.form("texto_adicional") sub altera_dados() SQL= "UPDATE Canal SET titulo = '"& titulo &"', logo = '"& logo &"', cor1 = '"& cor1 &"', cor2 = '"& cor2 &"', cor3 = '"& cor3 &"', texto_cor1 = '"& texto_cor1 &"', im1 = '"& im1 &"', titulo1 = '"& titulo1 &"', texto1 = '"& texto1 &"', link1 = '"& link1 &"', im2 = '"& im2 &"', titulo2 = '"& titulo2 &"', texto2 = '"& texto2 &"', link2 = '"& link2 &"', im3 = '"& im3 &"', titulo3 = '"& titulo3 &"', texto3 = '"& texto3 &"', link3 = '"& link3 &"', im4 = '"& im4 &"', titulo4 = '"& titulo4 &"', texto4 = '"& texto4 &"', link4 = '"& link4 &"', im5 = '"& im5 &"', titulo5= '"& titulo5&"', texto5 = '"& texto5 &"', link5 = '"& link5 &"', texto_adicional = '"& texto_adicional &"' where canal= '"& canal &"'" conexao.Execute (SQL) end sub call altera_dados() function confirma() if SQL = True then Response.Write "<br><p align=center><font face=Verdana size=2> Ocorreram Erros durante a Alteração dos Dados </font></p>" else Response.Write "<br><p align=center><font face=Verdana size=2> Dados Alterados com Sucesso </font></p>" end if end function call confirma() Sql.MoveNext Sql.Close Set Sql=Nothing Conexao.close Set conexao=nothing %> Se puderem me ajudar eu agradeço......
-
Olá galera, Primeiramente informo que sou novo em ASP, por isso peço que tenham paciencia comigo. Eu tenho um formulário que recupera dados do banco de dados, ele funciona certinho, recupera os daods, mais na hora que eu clico no botão "atualizar" para atualizar os dados alterados ele teria que atualizar o banco de dados, mias eu não sei fazer esse código, tentei apostilas, tutorias e não consegui, por favo me ajudem. Segue abaixo código do form para verificarem: <!--#include file="travar.asp"--> <!--#include file="conecta.asp"--> <html> <% canal=request.querystring("canal") SQLConsulta="select* From canal where canal='"& canal &"'" Set Consulta=Conexao.Execute(SQLConsulta) If Consulta.EOF Then%> <% response.redirect ("erro2.asp") %> <% else do while NOT Consulta.EOF %> <head> <style type="text/css"> <!-- .semrisco {text-decoration: none } --> </style> <style fprolloverstyle>A:hover {text-decoration: underline} </style> <title>plmf.solutions - Remote administration v1.0</title> </head> <body topmargin="0" leftmargin="0" bgcolor="#FFFFFF"> <!--#include file="top.asp"--> <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="779"> <tr> <td width="100%"> <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%"> <tr> <td width="23%" rowspan="2"> </td> <td width="77%"> </td> </tr> <tr> <td width="77%"> <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" height="435"> <tr> <td width="1%" height="435"> </td> <td width="99%" height="435"> <form method="GET" action="atualizardados.asp"> <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse; border: 1px solid #000000" bordercolor="#111111" width="100%" height="718"> <tr> <td width="592" background="imagens/background_br.gif" colspan="6" height="20"> <font face="Verdana" size="1"><b> <% response.write session("nome") %>, você está atualizando o canal: <i><%=consulta("titulo")%></i></b></font></td> </tr> <tr> <td width="11" height="19"> </td> <td width="155" colspan="2" height="19"> </td> <td width="188" height="19"> </td> <td width="119" height="19"> </td> <td width="119" height="19"> </td> </tr> <tr> <td width="11" height="19"> </td> <td width="155" colspan="2" height="19"><font face="Verdana" size="1"> Título do canal:</font></td> <td width="188" height="19"> <input type="text" name="titulo" size="36" style="font-size: 10 px; font-family: Verdana" value="<%=consulta("titulo")%>"></td> <td width="119" height="19"> </td> <td width="119" height="19"> </td> </tr> <tr> <td width="11" height="19"> </td> <td width="155" colspan="2" height="19"><font face="Verdana" size="1">Logo do canal:</font></td> <td width="188" height="19"> <input type="text" name="logo" size="17" style="font-size: 10 px; font-family: Verdana" value="<%=consulta("logo")%>"><font face="Verdana" size="1"> .jpg</font></td> <td width="119" height="19"> </td> <td width="119" height="19"> </td> </tr> <tr> <td width="11" height="19"> </td> <td width="155" colspan="2" height="19"><font face="Verdana" size="1">1º Cor:</font></td> <td width="188" height="19"> <input type="text" name="cor1" size="8" style="font-size: 10 px; font-family: Verdana" value="<%=consulta("cor1")%>"></td> <td width="119" height="19"> </td> <td width="119" height="19"> </td> </tr> <tr> <td width="11" height="19"> </td> <td width="155" colspan="2" height="19"><font face="Verdana" size="1">2º Cor:</font></td> <td width="188" height="19"> <input type="text" name="cor2" size="8" style="font-size: 10 px; font-family: Verdana" value="<%=consulta("cor2")%>"></td> <td width="119" height="19"> </td> <td width="119" height="19"> </td> </tr> <tr> <td width="11" height="19"> </td> <td width="155" colspan="2" height="19"><font face="Verdana" size="1">3º Cor:</font></td> <td width="188" height="19"> <input type="text" name="cor3" size="8" style="font-size: 10 px; font-family: Verdana" value="<%=consulta("cor3")%>"></td> <td width="119" height="19"> </td> <td width="119" height="19"> </td> </tr> <tr> <td width="11" height="19"> </td> <td width="155" colspan="2" height="19"><font face="Verdana" size="1">Cor do texto:</font></td> <td width="188" height="19"> <input type="text" name="texto_cor1" size="8" style="font-size: 10 px; font-family: Verdana" value="<%=consulta("texto_cor1")%>"></td> <td width="119" height="19"> </td> <td width="119" height="19"> </td> </tr> <tr> <td width="11" height="19"> </td> <td width="155" colspan="2" height="19"><font face="Verdana" size="1"> Fundo da barra superior:</font></td> <td width="188" height="19"> <input type="text" name="fundo_br" size="17" style="font-size: 10 px; font-family: Verdana" value="<%=consulta("fundo_br")%>"><font face="Verdana" size="1"> .jpg</font></td> <td width="119" height="19"> </td> <td width="119" height="19"> </td> </tr> <tr> <td width="11" height="19"> </td> <td width="155" colspan="2" height="19"> </td> <td width="188" height="19"> </td> <td width="119" height="19"> </td> <td width="119" height="19"> </td> </tr> <tr> <td width="11" height="19"> </td> <td width="155" colspan="2" height="19"><b><font face="Verdana" size="1"> Notícias</font></b></td> <td width="188" height="19"> </td> <td width="119" height="19"> </td> <td width="119" height="19"> </td> </tr> <tr> <td width="11" height="19"> </td> <td width="76" height="19"><font face="Verdana" size="1">1º Notícia - </font></td> <td width="79" height="19"><font face="Verdana" size="1">Título:</font></td> <td width="188" height="19"> <input type="text" name="titulo1" size="36" style="font-size: 10 px; font-family: Verdana" value="<%=consulta("titulo1")%>"></td> <td width="119" height="19"> </td> <td width="119" height="19"> </td> </tr> <tr> <td width="11" height="19"> </td> <td width="76" height="19"> </td> <td width="79" height="19"><font face="Verdana" size="1">Texto:</font></td> <td width="188" height="19"> <textarea rows="3" name="texto1" cols="34" style="font-size: 10 px; font-family: Verdana"><%=consulta("texto1")%></textarea></td> <td width="119" height="19"> </td> <td width="119" height="19"> </td> </tr> <tr> <td width="11" height="19"> </td> <td width="76" height="19"> </td> <td width="79" height="19"><font face="Verdana" size="1">Link:</font></td> <td width="188" height="19"> <input type="text" name="link1" size="36" style="font-size: 10 px; font-family: Verdana" value="<%=consulta("link1")%>"></td> <td width="119" height="19"> </td> <td width="119" height="19"> </td> </tr> <tr> <td width="11" height="19"> </td> <td width="76" height="19"> </td> <td width="79" height="19"><font face="Verdana" size="1">Imagem:</font></td> <td width="188" height="19"> <input type="text" name="im1" size="17" style="font-size: 10 px; font-family: Verdana" value="<%=consulta("im1")%>"><font face="Verdana" size="1"> .jpg</font></td> <td width="119" height="19"> </td> <td width="119" height="19"> </td> </tr> <tr> <td width="11" height="19"> </td> <td width="76" height="19"> </td> <td width="79" height="19"> </td> <td width="188" height="19"> </td> <td width="119" height="19"> </td> <td width="119" height="19"> </td> </tr> <tr> <td width="11" height="19"> </td> <td width="76" height="19"><font face="Verdana" size="1">2º Notícia - </font></td> <td width="79" height="19"><font face="Verdana" size="1">Título:</font></td> <td width="188" height="19"> <input type="text" name="titulo2" size="36" style="font-size: 10 px; font-family: Verdana" value="<%=consulta("titulo2")%>"></td> <td width="119" height="19"> </td> <td width="119" height="19"> </td> </tr> <tr> <td width="11" height="19"> </td> <td width="76" height="19"> </td> <td width="79" height="19"><font face="Verdana" size="1">Texto:</font></td> <td width="188" height="19"> <textarea rows="3" name="texto2" cols="34" style="font-size: 10 px; font-family: Verdana"><%=consulta("texto2")%></textarea></td> <td width="119" height="19"> </td> <td width="119" height="19"> </td> </tr> <tr> <td width="11" height="19"> </td> <td width="76" height="19"> </td> <td width="79" height="19"><font face="Verdana" size="1">Link:</font></td> <td width="188" height="19"> <input type="text" name="link2" size="36" style="font-size: 10 px; font-family: Verdana" value="<%=consulta("link2")%>"></td> <td width="119" height="19"> </td> <td width="119" height="19"> </td> </tr> <tr> <td width="11" height="19"> </td> <td width="76" height="19"> </td> <td width="79" height="19"><font face="Verdana" size="1">Imagem:</font></td> <td width="188" height="19"> <input type="text" name="im2" size="17" style="font-size: 10 px; font-family: Verdana" value="<%=consulta("im2")%>"><font face="Verdana" size="1"> .jpg</font></td> <td width="119" height="19"> </td> <td width="119" height="19"> </td> </tr> <tr> <td width="11" height="19"> </td> <td width="76" height="19"> </td> <td width="79" height="19"> </td> <td width="188" height="19"> </td> <td width="119" height="19"> </td> <td width="119" height="19"> </td> </tr> <tr> <td width="11" height="19"> </td> <td width="76" height="19"><font face="Verdana" size="1">3º Notícia - </font></td> <td width="79" height="19"><font face="Verdana" size="1">Título:</font></td> <td width="188" height="19"> <input type="text" name="titulo3" size="36" style="font-size: 10 px; font-family: Verdana" value="<%=consulta("titulo3")%>"></td> <td width="119" height="19"> </td> <td width="119" height="19"> </td> </tr> <tr> <td width="11" height="19"> </td> <td width="76" height="19"> </td> <td width="79" height="19"><font face="Verdana" size="1">Texto:</font></td> <td width="188" height="19"> <textarea rows="3" name="texto3" cols="34" style="font-size: 10 px; font-family: Verdana"><%=consulta("texto3")%></textarea></td> <td width="119" height="19"> </td> <td width="119" height="19"> </td> </tr> <tr> <td width="11" height="19"> </td> <td width="76" height="19"> </td> <td width="79" height="19"><font face="Verdana" size="1">Link:</font></td> <td width="188" height="19"> <input type="text" name="link3" size="36" style="font-size: 10 px; font-family: Verdana" value="<%=consulta("link3")%>"></td> <td width="119" height="19"> </td> <td width="119" height="19"> </td> </tr> <tr> <td width="11" height="19"> </td> <td width="76" height="19"> </td> <td width="79" height="19"><font face="Verdana" size="1">Imagem:</font></td> <td width="188" height="19"> <input type="text" name="im3" size="17" style="font-size: 10 px; font-family: Verdana" value="<%=consulta("im3")%>"><font face="Verdana" size="1"> .jpg</font></td> <td width="119" height="19"> </td> <td width="119" height="19"> </td> </tr> <tr> <td width="11" height="19"> </td> <td width="76" height="19"> </td> <td width="79" height="19"> </td> <td width="188" height="19"> </td> <td width="119" height="19"> </td> <td width="119" height="19"> </td> </tr> <tr> <td width="11" height="1"></td> <td width="76" height="1"><font face="Verdana" size="1">4º Notícia - </font></td> <td width="79" height="1"><font face="Verdana" size="1">Título:</font></td> <td width="188" height="19"> <input type="text" name="titulo4" size="36" style="font-size: 10 px; font-family: Verdana" value="<%=consulta("titulo4")%>"></td> <td width="119" height="1"></td> <td width="119" height="1"></td> </tr> <tr> <td width="11" height="19"> </td> <td width="76" height="19"> </td> <td width="79" height="19"><font face="Verdana" size="1">Texto:</font></td> <td width="188" height="19"> <textarea rows="3" name="texto4" cols="34" style="font-size: 10 px; font-family: Verdana"><%=consulta("texto4")%></textarea></td> <td width="119" height="19"> </td> <td width="119" height="19"> </td> </tr> <tr> <td width="11" height="19"> </td> <td width="76" height="19"> </td> <td width="79" height="19"><font face="Verdana" size="1">Link:</font></td> <td width="188" height="19"> <input type="text" name="link4" size="36" style="font-size: 10 px; font-family: Verdana" value="<%=consulta("link4")%>"></td> <td width="119" height="19"> </td> <td width="119" height="19"> </td> </tr> <tr> <td width="11" height="19"> </td> <td width="76" height="19"> </td> <td width="79" height="19"><font face="Verdana" size="1">Imagem:</font></td> <td width="188" height="19"> <input type="text" name="im4" size="17" style="font-size: 10 px; font-family: Verdana" value="<%=consulta("im4")%>"><font face="Verdana" size="1"> .jpg</font></td> <td width="119" height="19"> </td> <td width="119" height="19"> </td> </tr> <tr> <td width="11" height="19"> </td> <td width="76" height="19"> </td> <td width="79" height="19"> </td> <td width="188" height="19"> </td> <td width="119" height="19"> </td> <td width="119" height="19"> </td> </tr> <tr> <td width="11" height="19"> </td> <td width="76" height="19"><font face="Verdana" size="1">5º Notícia - </font></td> <td width="79" height="19"><font face="Verdana" size="1">Título:</font></td> <td width="188" height="19"> <input type="text" name="titulo5" size="36" style="font-size: 10 px; font-family: Verdana" value="<%=consulta("titulo5")%>"></td> <td width="119" height="19"> </td> <td width="119" height="19"> </td> </tr> <tr> <td width="11" height="19"> </td> <td width="76" height="19"> </td> <td width="79" height="19"><font face="Verdana" size="1">Texto:</font></td> <td width="188" height="19"> <textarea rows="3" name="texto5" cols="34" style="font-size: 10 px; font-family: Verdana"><%=consulta("texto5")%></textarea></td> <td width="119" height="19"> </td> <td width="119" height="19"> </td> </tr> <tr> <td width="11" height="19"> </td> <td width="76" height="19"> </td> <td width="79" height="19"><font face="Verdana" size="1">Link:</font></td> <td width="188" height="19"> <input type="text" name="link5" size="36" style="font-size: 10 px; font-family: Verdana" value="<%=consulta("link5")%>"></td> <td width="119" height="19"> </td> <td width="119" height="19"> </td> </tr> <tr> <td width="11" height="19"> </td> <td width="76" height="19"> </td> <td width="79" height="19"><font face="Verdana" size="1">Imagem:</font></td> <td width="188" height="19"> <input type="text" name="im5" size="17" style="font-size: 10 px; font-family: Verdana" value="<%=consulta("im5")%>"><font face="Verdana" size="1"> .jpg</font></td> <td width="119" height="19"> </td> <td width="119" height="19"> </td> </tr> <tr> <td width="11" height="19"> </td> <td width="76" height="19"> </td> <td width="79" height="19"> </td> <td width="188" height="19"> </td> <td width="119" height="19"> </td> <td width="119" height="19"> </td> </tr> <tr> <td width="11" height="19"> </td> <td width="155" colspan="2" height="19"><b><font face="Verdana" size="1"> Notícias adicionais:</font></b></td> <td width="188" height="19"> </td> <td width="119" height="19"> </td> <td width="119" height="19"> </td> </tr> <tr> <td width="11" height="19"> </td> <td width="76" height="19"> </td> <td width="79" height="19"><font face="Verdana" size="1">Alterar fonte:</font></td> <td width="188" height="19"> <input type="text" name="texto_adicional" size="36" style="font-size: 10 px; font-family: Verdana"></td> <td width="119" height="19"> </td> <td width="119" height="19"> </td> </tr> <tr> <td width="11" height="19"> </td> <td width="155" colspan="2" height="19"> </td> <td width="188" height="19"> </td> <td width="119" height="19"> </td> <td width="119" height="19"> </td> </tr> <tr> <td width="592" height="19" colspan="6"> <p align="center"> <input type="submit" value="Atualizar" name="B1" style="font-family: verdana; font-size: 10 px; font-weight: bold; background-color: #FFFFFF"></td> </tr> <tr> <td width="11" height="19"> </td> <td width="155" colspan="2" height="19"> </td> <td width="188" height="19"> </td> <td width="119" height="19"> </td> <td width="119" height="19"> </td> </tr> </table> </form> </td> </tr> </table> </td> </tr> </table> </td> </tr> </table> <!--#include file="rodape.asp"--> </body> <% Consulta.MoveNext loop end if Consulta.Close Set Consulta=Nothing Conexao.close Set conexao=nothing %> </html>
-
peguei no site vipcodigo
-
Eu baixei um script que faz busca com resultados do Google, só que ele tá com erro de páginação. Fui tentar mudar o script para ver se dava pra ajeitar mais não consegui, parece que o código está criptografado, se puderem me ajudar eu agradeço, segue o código abaixo: <%@ LANGUAGE = VBScript.Encode %> <%#@~^DQQAAA==@#@&B4DYa)zJoKGo^+ k1; ^K:zknlMmtJ.n/!VD/&g5xS+8_9n/boU@#@&BtOOa)&zTGKosRbm;cmKhzk+CD1t&./E^O/Q;'Sn8_9+kkLx'dDl.Y{X!L/Cxg@#@&9rsPjYMi"S@#@&fb:PUYMuKtS@#@&Gkh~}4LqnlDt+M@#@&@#@&wmDC:nOMExI5E/O 5E+.zUY.k LvJi"Sr#@#@&k6~I;;+kY }!+DHjYMkxTcE;r#,@!@*PEE,Y4+ @#@&al.Cs+Y.;{In;!nkY 5EDXUYMrxT`E;r#@#@&kYlMO'"+;!ndYcp!+.XjOMkUovE/Dl.Or#@#@&jDDiId~{J4DYa)zJoKGo^+ k1; ^K:zknlMmtJ.n/!VD/&g5xr[2lMC:Y.;LJ[dOmDO'r'kYCMY@#@&@#@&+^d+@#@&@#@&UY.i"SP{~J4YYal&zTWKos+ r1; mKhzk+C.1tz.nkEsYk&Q;xr[alDm:OD!@#@&BUY.i"SP{EtDYw=&&hShcoGWLsR^WsE@#@&+U[,k0@#@&&0~1KO,wCMls+YME,xPrJ~K4+U@#@&@#@&i@#@&@#@&di@#@&@#@&dirUP3.MW.P"n/!:n~g+6O@#@&@#@&d@#@&idjY,Vr(LqnlDtnD,'~jD\.R;D+mOnr(LmOPcEtk^DKdW6Y ptSCPPhJb@#@&7i@#@&@#@&id@#@&di(0,2.D,K4n @#@&i7dV+Y`]JP{Pr2.DG.=PEPL~2MD 9/m.raYrW @#@&d7i@#@&ddAx9~q6@#@&di@#@&7irx,3DMWD,!GYKPZ@#@&@#@&7irY4~V}4% lY4nM@#@&di7cr2x,JMAKrSPkY.EMVS~wlVkn~,JJB~EJ@#@&id7Rjn N@#@&i7dV+Oi"SPx~cIn/aG /n:+XY@#@&di3x9P kDt@#@&id?OPdW4N nlDtD~'~HKY4k L@#@&@#@&7i/Y.u:HJP{~V+O`Id@#@&@#@&UN,kW@#@&@#@&@#@&@#@&@#@&@#@&@#@&CxQBAA==^#~@%> <!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <link rel="stylesheet" href="styles.css"> </head> <BODY > <H1>Busca</H1> <FORM> <INPUT size="50" name="URL" value="<%=#@~^CQAAAA==2mDCs+DDE0QMAAA==^#~@%>"> <INPUT type="Submit" value="Search"> </FORM> <%#@~^KQUAAA==@#@&/^MkaYxm:xI;;+kY jD\..mDkm8s+k`r?/I(K:{Hbt3J*@#@&@#@&q0~HKY~wm.m:nDD!'PrJ,Ptx@#@&kY.u:HS{.+aVl1nc/DD_K\SSEJ/nlM^tJDnd!VYd&r~dmMraYUm:#@#@&/D.C:HJ'M+2smm+vdYMCKtJSJJ/l.m4&M+dE^O/r~d^MkwOUm:n#@#@&kY._KtS'M+asl1+c/DDuPtS~r4YDw)J&LWKo^+ k^5cmG:rSJr#@#@&ED+d2Kxd+cAMkOP DwmDmhd@#@&vD/2G /+cADbY+,dOD_KtS@#@&C.M'dw^rY,`dOMtYhsBJ^Vmdk'Lr~ F~8#@#@&xMwxj(W;U9`lM.#@#@&0K.~L{F,YGPU.aOq@#@&dYMkUL^k/OxkY.k L^kdD[mDDvL*@#@& +aY@#@&@#@&EY+kOlMD'k2skDPv/ODrUTVr/DSJDl8sJ~RqBFb@#@&O/OmDM'/aVbOPv/OD4YhsBJYm8VJ~ qSF*@#@&x.'i8KEUNvO+kYC.M#@#@&sb/O+m"m'E@!4MJ@#@&k6~xM'*PDtnU,@#@&@#@&0KDPbx*PDW,x.O*@#@&Vr/Dnl.lxsb/YnC.l'YdDl.M`b#[rYm8VJ@#@& +aO@#@&+^d+@#@&0K.~k{G,YGPU. v@#@&@#@&@#@&Y.rsEkOxM+2Vm^`O/DlDM`bb~rtOYa)ESrJ#@#@&k6PVUcY/Dl.Dcr*#~@!@*~VxcOMk:;rD#~PmU9Pr@* ,Ytx@#@&\mDq'rt.n6'JL^tM`&Wb'J4YDwlz&E@#@&-lM+'rYC.T+YxELm4DvfW#'r{(Vl 3r'm4Dc&W#'E,tDW'r[m4.c&W#LJ4YO2=z&J@#@&\mVGCM+:COMk^'MnaVC1+vY+kYm.Dvkb~7l.qB\lM+#@#@&@#@&O.ksEbY)f#xM+2Vm^+vYndDlD.cb#SJ9r7JSrJ*@#@&b0,s+ `O+kYC.M`k*bP@!@*P^nU`DDb:;kO)G.bP,~Y4+U@#@&@#@&-C^WCDhmY.bm{JJ@#@&@#@&+ N~k6@#@&@#@&VkkO+myl{sr/D+myC[-C^WCDhlDDr^LJYC8^+E@#@&n^/n@#@&^k/D+m"l{Vr/D+C"m[YdYmDDvrb[rYm4s+E@#@&@#@&+ [Pb0@#@&@#@&@#@&U6O@#@&@#@&@#@&@#@&xN,k6@#@&@#@&vD/2G /+cADbY+,U.[r@!(D@*J@#@&M+dwKU/RA.bY+~sb/O+m"m[E@*J@#@&BM+k2W /nRSDrOP/D.k oVbdO@#@&+ N~kW@#@&dH4BAA==^#~@%> <%#@~^fAAAAA==@#@&DnkwKx/RS.kD+~J@!4@*/M+lDnN,4X,@!&0KxD@*@!b~4M+W'4OYa)&&Shh n^mU+D 1WhJDKzwmDknDctO:@*P3J;P1APP,@!zz@*@!z(@*@!A]@*E@#@&eiIAAA==^#~@%> <BR><BR>
-
isso e de poder fecha-la depois tambem, igual a do exemplo
-
nesse link que eu mandei tem um exemplo de um site em flash e nesse exemplo tem o menu, quando você clica em alguma opção do menu, o conteúdo aparece em uma janela por cima do site, e eu queria saber como faço esse efeito.
-
Olá Eu queria saber como fazer a animação que tem nesse site: Clique aqui para ver a animação Quando você clica em algum item da barra acima aparece o conteúdo em uma janela por cima do site, se puderem me ajuadr eu agradeço.
-
Olá Comunidade, é o sequinte, tenho página que lista rpodutos de um banco de dados, quando ele lista um produto, automaticamente ele cria um campo quantidade e subtotal na frente do produto. Até ai tudo bem, o problema é que quando a pessoa clica no botão continuar, vai para a página de confirmação e não consigo fazer um request.form destes campos. Detalhe: oe campos sãocriados dessa maneira: <input name="txtValorTotal<%=consulta("codigo")%>" type="text" value="0" size="6" onKeyUp="somaTotal(this)"> onde o codigo é o codigo do produto, então o campo fica o nome por exemplo de txtValorTota101 eu queria saber como fazer o request.form nesse caso. Se puderem me ajudar, fico grato
-
O Renan, foi mal, é que eu postei a minha dúvida e esqueci de atualizar o arquivo no ftp, mais agora tá certo: Tabela de produtos Quando eu digito a quantidade que quero de um produto ele automaticamente aparece o subtotal e na base da tabela teria que aparecer automaticamente o valor total, mais não aparece, aprece se eu for digitando a quantidade dos produtos e apertando TAB para pular de um produto para outro, testem no link acima pra vocês verem.