|
|
| |
STTP

STTP Organised by INSDAG 2008-2010
<%
Dim iYear, iCtr, iCnt,strCss
if Isarray(arrYear) then
For iYear = 0 to ubound(arrYear,2)
%>
| SI.No |
Title |
Date |
Venue |
<%
sqlMain = "Select * from Courses_STTP where Year =" & arrYear(0,iYear)
rsMain.Open sqlMain,Conn,adOpenForwardOnly
arrList = rsMain.GetRows()
rsMain.Close()
For iCnt = 0 To ubound(arrList,2)
if iCnt MOD 2 = 0 then
strCss = "list_pnl_under"
else
strCss = "list_pnl_under1"
End if
%>
| <%=iCnt+1%> |
<%=arrList(1,iCnt)%> |
<%=arrList(2,iCnt)%> |
<%=arrList(3,iCnt)%> |
<%
Next
%>
<%
Next
End If
%>
|
|
|
|
|