Hi there,
What error do you get? What exactly is going wrong?
One thing I can see is the Int i construct:
Code:
For int i = 0 to objRS.Fields.Count - 1
strT = strT & "<td>" & objRS.Fields(i).Name & "</td>"
Next
strT = strT & "</tr>"
You can't declare and use a variable like this in VBScript ASP.
Try this:
Code:
Dim i
For i = 0 to objRS.Fields.Count - 1
strT = strT & "<td>" & objRS.Fields(i).Name & "</td>"
Next
strT = strT & "</tr>"
If this doesn't solve the problem, please provide a bit more detailed information about the errors you're getting.
HtH
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.