Mostrando Codigo - Asp
EXPLICACION
Const sPrimaryColor = "WHITE"
Const sSecondaryColor = "YELLOW"
Las constantes de los colores
<%
'Constantes para los colores
Const sPrimaryColor = "WHITE"
Const sSecondaryColor = "YELLOW"
Dim bColorFlag
Dim lCounter
'Ahora hacemos el trabajo
function LineColor()
bColorFlag = Not bColorFlag
if bColorFlag Then
LineColor = sPrimaryColor
Else
LineColor = sSecondaryColor
End if
End function
%>
<SCRIPT language='VBScript'>
Dim sRowOldColor
Const sHighlightColor = "LIGHTBLUE"
Sub Document_onclick()
Dim sID
if Window.Event.srcElement.tagName = "TD" Then
sID = Window.Event.srcElement.ParentElement.id
MsgBox "ID = " & sID,,"This is the ID of the row."
End if
End Sub
Sub Document_onmouseover()
if Window.Event.srcElement.tagName = "TD" Then
sRowOldColor = window.event.srcElement.ParentElement.bgcolor
window.event.SrcElement.ParentElement.bgcolor=sHighlightColor
End if
End Sub
Sub Document_onmouseout ()
if window.event.srcElement.tagName = "TD" Then
window.event.srcElement.parentElement.bgcolor = sRowOldColor
End if
End Sub
</SCRIPT>
<HTML>
<HEAD>
<TITLE>
Alternando colores - Tutores.org
</TITLE>
</HEAD>
<BODY>
<CENTER>
<P>
<BR>
</P>
<TABLE width='80%' cellspacing='3' cellpadding='3' border='1'>
<%
For lCounter = 1 To 10
Response.Write("<TR bgcolor='" & LineColor & "' id='" & lCounter & "'>" & vbCrLf)
Response.Write("<TD><CENTER>" & lCounter & "</CENTER></TD>" & vbCrLf)
Response.Write("</TR>" & vbCrLf)
Next
%>
</TABLE>
</CENTER>
</BODY>
</HTML>
ENLACE AL CODIGO
Si quieres enlazar desde tu pagina a este codigo
COMENTARIOS
Aun no existe ningun comentario para este Codigo.