Hi All,
I have a working ASP script that outputs to a table, but I went and purchased a very nice Java Table app (Tigra Tables)
Documentation is skimpy with no examples to help and I am a total waste of space at Java
So I am hoping someone has already got this issue Sorted
I generate output using
<% Do While Not rstSearch.EOF %>
<%= rstSearch.Fields (1) %>
<%= rstSearch.Fields (2) %>
<% iRecordsShown = iRecordsShown + 1
rstSearch.MoveNext
Loop
rstSearch.Close
Set rstSearch = Nothing
cnnSearch.Close
Set cnnSearch = Nothing
end if
end if
%>
I then need to pass this to Tigra table which accepts info from three Static
js scripts
<script type="text/javascript">
new TTable(TABLE_CAPT, TABLE_CONTENT, TABLE_LOOK);
</script>
I have deleted the static File TABLE_CONTENT
The other two are not a problem
But how do I pass my dynamic data to TABLE_CONTENT
Thanks in advance
Topshed