"
For intCounter = 0 To rsMatch.Fields.Count-1
If Len(rsMatch.Fields(intCounter))=0 Or IsNull(rsMatch.Fields(intCounter)) Then
Response.Write "| - | "
Else
If Not rsMatch.Fields(intCounter).Name = "Datum" Then
If Not rsMatch.Fields(intCounter).Name = "Tid" Then
Response.Write "" & rsMatch(intCounter) & " | "
End If
End If
If rsMatch.Fields(intCounter).Name = "Datum" Then
strDatum = rsMatch(intCounter)
strDatum = Replace(strDatum, "/", "-")
Response.Write "" & strDatum & " | "
End If
If rsMatch.Fields(intCounter).Name = "Tid" Then
strDatum = rsMatch(intCounter)
Response.Write "" & FormatDateTime(strDatum, vbShortTime) & " | "
End If
End If
Next
rsMatch.MoveNext
Response.Write "
"
Loop
Else
Response.Write "Inga kommande matcher finns i databasen"
End If
CloseDB(rsMatch)
%>