Ir para conteúdo

Arquivado

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

filipecrosk

Sistema de fotos basico mas funcional

Recommended Posts

ai galera ta ai o sistema de fotos..

 

o lik tava quebrado.. entao coloquei nesse server ai.. espero que todos consigam baixar.. se nao conseguirem pô me fala ai que eu mando por email entao..hehe

e a sugestao de colocar mes e ano.. quem quizer pode fazer por conta propria oks??

ow se quizer eu ate ajudo a fazer isso..hehe

no mais é isso..abracao fui

http://forum.imasters.com.br/public/style_emoticons/default/excl.gif/>

clique aqui para baixar

Tento obter este código a séculos e nada...

 

Alguém pode enviar-me via e-mail?

 

Email: duke ARROBA irmandade.com.br

 

Grato

Compartilhar este post


Link para o post
Compartilhar em outros sites

Problema encontrado na recuperação de querystring...... o problema se encontra na pagina exibe.asp?evento=1Se por exemplo uma pessoa digita o link exibe.asp?evento=1200000 a recuperação da querystring puxa um evento que não existe no banco de dados, então seria necessária colocar uma verificação pra ver se tem o evento cadastrado antes de acessar o conteúdo, issu evita o famoso Error 500....qualquer dúvida da um toque.......Valewwwww..... té mais......

Compartilhar este post


Link para o post
Compartilhar em outros sites

Tem como colocar esse sistema com no maximo 10 linhas e dividir o resto em páginas ? Além disso colocar só em thumbs, abrindo uma nova janela sempre que clicado em uma foto(thumbs). Alem disso quando aberto a nova janela com a foto clicada aparecer a opção de enviar por email e continuar passando dessa mesma tela.

Compartilhar este post


Link para o post
Compartilhar em outros sites

Galera, quem quiser uma copia do meu sistema de Fotos e so falar.www.ritmonoturno.com.brEle exibe 9 Eventos na pagina principal. Tem um link que mostra TODOS os Eventos cadastrados que teve cobertura. Ele organiza por data, ele pode enviar e comprar fotos. Se alguem puder me ajudar, estou precisando de um sistema de Loja Virtual de Produtos e outra de Locadora Virtual, alguem pode me ajudar?

Compartilhar este post


Link para o post
Compartilhar em outros sites

Olá amigos,Se alguém mandar o arquivo zipado, posso disponibilizar em minha página, fixo! Sem problemas!E-mail: peterson.chaves@gmail.comAbs!

Compartilhar este post


Link para o post
Compartilhar em outros sites

cara, se você quiser, é so ler o inicio do topico e fazer o download.....ele ta disponivel...http://www.turmateen.com.br/sistemadefotos.zip

Lucas meu amigo e como você faz para enviar as fotos pro servidor.você envia uma por uma pelo upload ou envia a pasta com todas as fotos e usa FSO. Ou envia a pasta por ftp. ?Diz ae meu irmao.Obrigado pela atenção.[]'s

Compartilhar este post


Link para o post
Compartilhar em outros sites

Ae muito bom essa máteria mas gostaria de saber se é possivel colocar um botão que faria a função de slide show ou seja mais uma opção para a pessoa ver as fotos sem ter que estar clicando blza vlw

Compartilhar este post


Link para o post
Compartilhar em outros sites

de uma arrumada neste codigo ele e de facil compreenção

 

<html><head><title>site</title><!-- Set up the caption font in the following style.Also set the styles for the controls.Place the style script in the head of the page.//--><style>.Caption {font-family: Arial;font-weight: normal;font-size:  12pt;color:	  #FF3300; }A.Controls:link	{ color:#666666;					text-decoration:none;					font-family: Arial;					font-size:   14pt;					font-weight: bold; }A.Controls:visited { color:#666666; text-decoration:none; 					font-family: Arial;					font-size:   14pt;					font-weight: bold; }A.Controls:active  { color:#666666; text-decoration:none;					font-family: Arial;					font-size:   14pt;					font-weight: bold; }A.Controls:hover   { color:#00FF00; text-decoration:none;					font-family: Arial;					font-size:   14pt;					font-weight: bold; }</style><!-- Place the following script in the head of the page.Follow the set-up instructions within the script.//--><script>// (C) 2003 by CodeLifter.com// Free for all users, but leave in this header.// ==============================// Set the following variables...// ==============================// Set the slideshow speed (in milliseconds)var SlideShowSpeed = 3000;// Set the duration of crossfade (in seconds)var CrossFadeDuration = 2;var Picture = new Array(); // don't change thisvar Caption = new Array(); // don't change thisvar showHot = false;	   // don't change this// Specify the image files...// To add more images, just continue// the pattern, adding to the array below.// To use fewer images, remove lines// starting at the end of the Picture array.// Caution: The number of Pictures *must*// equal the number of Captions!Picture[1]  = '01.jpg';Picture[2]  = '02.jpg';Picture[3]  = '03.jpg';Picture[4]  = '04.jpg';Picture[5]  = '05.jpg';Picture[6]  = '06.jpg';Picture[7]  = '07.jpg';Picture[8]  = '08.jpg';Picture[9]  = '09.jpg';Picture[10]  = '010.jpg';// Specify the Captions...// To add more captions, just continue// the pattern, adding to the array below.// To use fewer captions, remove lines// starting at the end of the Caption array.// Caution: The number of Captions *must*// equal the number of Pictures!Caption[01]  = "seu comentario";Caption[02]  = "seu comentario";Caption[03]  = "seu comentario";Caption[04]  = "seu comentario";Caption[05]  = "seu comentario";Caption[06]  = "seu comentario";Caption[07]  = "seu comentario";Caption[08]  = "seu comentario";Caption[09]  = "seu comentario";Caption[010]  = "seu comentario";// =====================================// Do not edit anything below this line!// =====================================var tss;var iss;var jss = 1;var pss = Picture.length-1;var preLoad = new Array();for (iss = 1; iss < pss+1; iss++){preLoad[iss] = new Image();preLoad[iss].src = Picture[iss];}function para(){clearTimeout(tss);}function runSlideShow(){if (document.all){document.images.PictureBox.style.filter="blendTrans(duration=2)";document.images.PictureBox.style.filter="blendTrans(duration=CrossFadeDuration)";document.images.PictureBox.filters.blendTrans.Apply();}document.images.PictureBox.src = preLoad[jss].src;if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss];if (document.all) document.images.PictureBox.filters.blendTrans.Play();jss = jss + 1;if (jss > (pss)) jss=1;tss = setTimeout('runSlideShow()', SlideShowSpeed);}function para(){clearTimeout(tss);}function control(how){if (showHot){if (how=="H") jss = 1;if (how=="F") jss = jss + 1;if (how=="B") jss = jss - 1;if (how=="I") runSlideShow();if (jss > (pss)) jss=1;if (jss < 1) jss = pss;if (document.all){document.images.PictureBox.style.filter="blendTrans(duration=2)";document.images.PictureBox.style.filter="blendTrans(duration=CrossFadeDuration)";document.images.PictureBox.filters.blendTrans.Apply();}document.images.PictureBox.src = preLoad[jss].src;if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss];if (document.all) document.images.PictureBox.filters.blendTrans.Play();}}</script></head><!--Add onload='showHot=true;' to the body tag.  This isneeded to prevent false object calls while the pageis loading. Optional: If you are using this in apopup, as in this demo, adding self.focus() to theonload event in the body tag will bring the popupto the front each time it is loaded [recommended]. //--><body onload='showHot=true;self.focus();' ><!--The following table holds the images, captions, and controls.Place the table in your page where you want the slideshowto appear.  Follow the instructions for each table cell.//--><div align="center"> <center><table border=0 cellpadding=0 cellspacing=0 width="488"> <tr>   <!--   The next table cell holds the images.   Set cell and image width and height the same.   The img src must have name=PictureBox in its   tag.  Often, the first image in the Picture   array in the script is used here; but you   may also use a different, introductory image   as we have here, since this image is shown   only on start-up.   //-->   <td width=484 height=280  align="center">      <p>      <img src=01.jpg name=PictureBox >   </td> </tr> <tr>   <!--    The next table cell holds the captions.   This table cell must have id=CaptionBox and   class=Caption in its tag. The default caption   shows whilst loading in all browsers; NS4   will show only the default caption, throughout.   //-->   <td id=CaptionBox class=Caption align=center>       </td> </tr>   <!--   The following three cells contain the controls.   Each of the control a href's must contain class=   Controls, to attach the styles (see top of script).   To dress this up a bit, you can of course substitute   <img src> images for the text in the links.   //--> <tr>   <td align="center">   <a class=Controls href="#" onClick="java script:control('B');">< < Anterior</a>      <a class=Controls href="#" onClick="java script:control('I');">iniciar em 	slide</a>      <a class=Controls href="#" onClick="java script:para();"> 	Parar</a>     <a class=Controls href="#" onClick="java script:control('F');"><b>Próximo > ></b></a></td> </tr>  </table> </center></div></body></html>

Compartilhar este post


Link para o post
Compartilhar em outros sites

era porreiro fazer no sistema uma cena que era registar várias categorias..e depois nessas categorias, também a possibilidade de existirem vários album..e nos albums registar as fotos que pretendemos...Eu tenho um sistema mais ou menos assim..mas o problema é no listar das fotos..quando eu quero alterar alguma ou eliminar o sistema mostra.m as fotos todas existentes na base dados...mas eu so keria seleccionar as fotos pertencentes a esse album...mas vou dar uma olhadela p ver se consigo..e se entretanto tiverem alguma solução avisem...thanks

Compartilhar este post


Link para o post
Compartilhar em outros sites

boas..neste momento não tenho o codigo comigo, pois estou a espera de um transformador para o meu portatil..mas quando tiver, mando a parte da admistração que estou a fazer..também já tentei criar uma loja virtual em asp...peguei um script da net, mas havia coisas que eu não keria e nao sabia bem como mudar..como por exemplo validações do CEP--eu não preciso disso, pois em PORTUGAL não há nada disso...Mas acho que a melhor solução era fazer uma especie de e-commerce atraves da tecnologia .NET (ASP.net)Abraço

Compartilhar este post


Link para o post
Compartilhar em outros sites

Ola eu também quero esse codigo você pode mandar pro meu e-mail.lordouglas@mxfusion.org

Compartilhar este post


Link para o post
Compartilhar em outros sites

ae irmão, se puder me mandar tbdouglas.delucca@gmail.comvaleu

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.