Hi,
I have the following problem with the piece of code below:
What I want is a single columned table as follows
ABC
DEF
GHI
JKL
MNO
but what I am ending up with is output as follows:
Authorisation Levels
ABC
DEF GHI JKL MNO
Here is the code that is causing the problem. if someone could help me out I would appreciate it greatly!!
#################################################
<b>Authorisation Levels</b>
<%
Dim arrFundList, fundList, ptr, Results
fundList = ObjectList("ORDERASSISTANT", strFundSource, "FUND", corpID, ""
arrFundList = UBound(fundList)
Response.Write "<table border=1 cellpadding=0 cellspacing=0>"
Redim Results (arrFundList, 1)
For ptr = 0 to arrFundList
Response.Write "<tr>" &_
"<td>" & fundList(ptr) & "</td>" & _
"</tr>" &_
"</table>"
Next
%>
I have the following problem with the piece of code below:
What I want is a single columned table as follows
ABC
DEF
GHI
JKL
MNO
but what I am ending up with is output as follows:
Authorisation Levels
ABC
DEF GHI JKL MNO
Here is the code that is causing the problem. if someone could help me out I would appreciate it greatly!!
#################################################
<b>Authorisation Levels</b>
<%
Dim arrFundList, fundList, ptr, Results
fundList = ObjectList("ORDERASSISTANT", strFundSource, "FUND", corpID, ""
arrFundList = UBound(fundList)
Response.Write "<table border=1 cellpadding=0 cellspacing=0>"
Redim Results (arrFundList, 1)
For ptr = 0 to arrFundList
Response.Write "<tr>" &_
"<td>" & fundList(ptr) & "</td>" & _
"</tr>" &_
"</table>"
Next
%>