|
|
| |
 |
| |
|
MATCH RESULTS |
|
|
|
Please find below the results of the
matches played till now. |
|
|
|
SPORTS 18 - T20 CORPORATE CRICKET
TOURNAMENT |
|
|
|
|
<%
DIM strSQL, objRS
strSQL = "SELECT * FROM Matches where Tournament_Id=3 AND MatchActive=0 ORDER BY MatchDate DESC"
Set objRS = Server.CreateObject("ADODB.Recordset")
objRS.Open strSQL, db
%>
|
|
<% While Not objRS.EOF %>
|
<%= objRs("MatchDay")%> <%= objRs("MatchDate")%> |
|
|
| RESULT |
MAN OF THE MATCH |
| |
|
| <%= objRs("Result")%> |
<%= objRs("ManOfMatch")%> |
| |
|
| <%= objRs("ScoreTeam1")%> |
|
| <%= objRs("ScoreTeam2")%> |
|
| |
|
| ">Download Scoresheet |
|
|
|
|
<%
objRs.MoveNext
wend
%>
|
|
|
|
|
|
|
|
|
|
|