Olha amigos estou montando um helpdesk em asp, esta tudo rodando direitinho mais e o sequinte, quando visualizo algumas paginas ele esta aparecendo parte do script como posso resolver, depois de tudo pronto colocarei aqui para todos seque abaixo
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
Pergunta
arldin
Olha amigos estou montando um helpdesk em asp, esta tudo rodando direitinho mais e o sequinte, quando visualizo algumas paginas ele esta aparecendo parte do script como posso resolver, depois de tudo pronto colocarei aqui para todos seque abaixo
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<?asp
include "status.asp";
?><?asp
include "connect.asp";
?><HTML
xmlns="http://www.w3.org/1999/xhtml"><HEAD><TITLE>Chamados em "Aberto"</TITLE><!-- DW6 --><!-- Copyright 2005 Macromedia, Inc. All rights reserved. -->
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1"><LINK
href="style/mm_health_nutr.css" type=text/css rel=stylesheet>
<script language=JavaScript type=text/javascript>
//--------------- LOCALIZEABLE GLOBALS ---------------
var d=new Date();
var monthname=new Array("Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro");
//Ensure correct for language. English is "January 1, 2004"
var TODAY = monthname[d.getMonth()] + " " + d.getDate() + ", " + d.getFullYear();
var HOJE = d.getDate() + " de " + monthname[d.getMonth()] + " de " + d.getFullYear();
//--------------- END LOCALIZEABLE ---------------
</SCRIPT>
<STYLE type=text/css>
<!--
.style1 {
font-size: 12px;
font-weight: bold;
}
.botoes {
background-color: #F4FFE4;
text-align: center;
list-style-type: square;
font-weight: bold;
color: #993300;
}
.style3 {font-size: 12px; font-weight: bold; color: #0099FF; }
.style8 { font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
color: #000066;
font-weight: bold;
}
-->
</STYLE>
<META content=MSHTML 6.00.2900.3354" name=GENERATOR></HEAD>
<BODY bgColor=#f4ffe4 background=imagens/image306.gif><?asp
$begin = $_GET['begin];
if (!$begin) { $begin = 0; }
$query = 'SELECT COUNT(*) FROM registros WHERE (estado = "ANDAMENTO")';
$query = mysql_query($query,$conexao);
$query = mysql_fetch_array($query);
$total = $query[0];
?><?asp
if (($begin >0) and ($begin <= 10)) { $anteriores = '<A
href=ler_andamentos.asp?begin=0">Anteriores</A>'; } elseif (($begin > 0) and
($begin > 10)) { $anteriores = '<A
href="ler_andamentos.asp?begin=' . ($begin-10) . '">Anteriores</A>'; } else {
$anteriores = 'Anteriores'; } if (($begin < $total) and (($begin+10) >=
$total)) { $proximos = 'Próximos'; } else { $proximos = '<A
href="ler_andamentos.asp?begin=' . ($begin+10) . '">Próximos</A>'; } ?>
<TR><TD height="490"> <SPAN class=bodyText></SPAN>
<TABLE cellSpacing=0 cellPadding=2 width=526 align=center border=0>
<TBODY>
<TR>
<TD class=pageName height=46>
<DIV align=center>
<P><FONT color=#ff0000>Chamados em Andamento</FONT> </P></DIV></TD></TR>
<TR>
<TD class=bodyText height=19>
<P class=style1 align=center>TOTAL DE CHAMADOS EM ANDAMENTO: <SPAN
class=style3><?asp echo $total; ?></SPAN></P></TD></TR>
<TR>
<TD class=bodyText align=middle height=20><SPAN class=style1>Ordenado por
data de registro .</SPAN></TD></TR></TBODY></TABLE>
<TABLE cellSpacing=0 cellPadding=2 width=526 align=center border=0>
<TBODY>
<TR>
<TD class=bodyText height=37>
<DIV align=center></DIV></TD></TR></TBODY></TABLE>
<P class=pageName align=center><?php
$query = 'SELECT DISTINCT * FROM registros WHERE (estado = "ANDAMENTO") ORDER BY data_aber DESC';
$query = mysql_query($query,$conexao);
while ($linha = mysql_fetch_array($query)) {
$var = $linha['data_aber];
$var = explode(" ",$var);
$dia = $var[0];
$hora = $var[1];
$dia = explode("-",$dia);
$data = "$dia[2]/$dia[1]/$dia[0] às $hora";
$zar = $linha['data_status'];
$zar = explode(" ",$zar);
$dia2 = $zar[0];
$hora2 = $zar[1];
$dia2 = explode("-",$dia2);
$data2 = "$dia2[2]/$dia2[1]/$dia2[0] às $hora2";
?></P>
<TABLE cellSpacing=0 cellPadding=2 width=526 align=center border=0>
<TBODY>
<TR>
<TD class=subHeader id=monthformat>Setor</TD>
<TD class=subHeader id=monthformat colSpan=3><SPAN class=style8><?asp echo $linha['setor']; ?></SPAN></TD>
<TD class=subHeader id=monthformat width=102>
<DIV align=right>ID</DIV></TD>
<TD class=subHeader id=monthformat width=61>
<DIV align=right><SPAN
class=style8><?asp echo $linha['id']; ?></SPAN></DIV></TD></TR>
<TR>
<TD class=subHeader id=monthformat width=154>Andar</TD>
<TD class=subHeader id=monthformat width=44><SPAN class=style8><?asp echo $linha['andar']; ?></SPAN></TD>
<TD class=subHeader id=monthformat width=43>
<DIV align=center>Ramal</DIV></TD>
<TD class=subHeader id=monthformat colSpan=3><SPAN class=style8><?asp echo $linha['ramal']; ?></SPAN></TD></TR>
<TR>
<TD class=subHeader id=monthformat>Contato</TD>
<TD class=subHeader id=monthformat colSpan=5><SPAN class=style8><?asp echo $linha['contato']; ?></SPAN></TD></TR>
<TR>
<TD class=subHeader id=monthformat>Equipamento</TD>
<TD class=subHeader id=monthformat colSpan=5><SPAN class=style8><?asp echo $linha['equip']; ?></SPAN></TD></TR>
<TR>
<TD class=subHeader id=monthformat vAlign=top>Problema</TD>
<TD class=subHeader id=monthformat colSpan=5><SPAN class=style8><?asp echo $linha['prob_rep']; ?></SPAN></TD></TR>
<TR>
<TD class=subHeader id=monthformat vAlign=top>Registrado em </TD>
<TD class=subHeader id=monthformat colSpan=5><SPAN class=style8><?asp echo $data; ?></SPAN></TD></TR>
<TR>
<TD class=subHeader id=monthformat vAlign=top>
<P>Assumido em </P></TD>
<TD class=subHeader id=monthformat colSpan=5><SPAN class=style8><?asp echo $data2; ?></SPAN></TD></TR>
<TR>
<TD class=subHeader id=monthformat vAlign=top>Técnico</TD>
<TD class=subHeader id=monthformat colSpan=5><SPAN class=style8><?asp echo $linha['tecnico']; ?></SPAN></TD></TR>
<TR vAlign=top>
<TD class=subHeader id=monthformat height=32>STATUS</TD>
<TD class=subHeader id=monthformat><SPAN class=style3><?asp echo $linha['estado']; ?></SPAN></TD>
<TD class=subHeader id=monthformat> </TD>
<TD class=subHeader id=monthformat align=right colSpan=3>
<FORM id=form1 name=form1 action=busca_resultado.asp
method=get><LABEL></LABEL><LABEL></LABEL> </FORM></TD></TR>
<TR align=right>
<TD class=subHeader id=monthformat vAlign=top colSpan=6></TD></TR>
<TR>
<TD class=subHeader id=monthformat vAlign=top align=right colSpan=6
height=42> </TD></TR></TBODY></TABLE>
<P><?asp
}
?></P>
<P> </P>
<P> </P>
<P> </P></BODY></HTML>
Na vizualização ficar esta parte apacendo
0) and ($begin <= 10)) { $anteriores = 'Anteriores'; } elseif (($begin > 0) and ($begin > 10)) { $anteriores = 'Anteriores'; } else { $anteriores = 'Anteriores'; } if (($begin < $total) and (($begin+10) >= $total)) { $proximos = 'Próximos'; } else { $proximos = 'Próximos'; } ?> Chamados em Andamento
Agradeço a ajuda desde já
Link para o comentário
Compartilhar em outros sites
7 respostass a esta questão
Posts Recomendados