Hi, thanks fro your help so soon, I have tried the code you suggested this morning, however I am getting an error message of "object required"
Here's the code for th dynamic table (only 1 tick box will be chosen from however many is on the page (as its a dynamic number of check boxes depending on the number of records in the database))
<% if (not adoRS.BOF) and (not adoRS.EOF) then %>
<P align=center><STRONG>Select Relevant
Program</STRONG>:</P>
<P align=center><STRONG></STRONG></P>
<P>
<TABLE style="WIDTH: 532px; HEIGHT: 59px" border=1 align="center">
<TR class=TableHeaderGrey>
<TH width=50 align=middle><B>ID</B></TH>
<TH width=450 align=middle ><B>Program Name</B></TH>
<TH width=50 align=middle>Select</TH>
</TR>
<%
Do While Not (adoRS.EOF)
%>
<TR class="<%=GetTableRowColor%>">
<TD align=middle><%=adoRS.Fields(0).Value%></TD>
<% gets data from database via
VB DLL
'get Program Description
set objProject1 = Server.CreateObject("Project1.Class1")
strProgramName = objProject1.GetProgramName(adoRS.Fields(0).Value)
set objProject1 = nothing
%>
<TD align=middle><%=strProgramName%></TD>
Here are the dynamic check boxes:
<TD align=middle><input id=chkProgram name="<%=adoRS.Fields(0).Value%>" type=checkbox onClick="DoCheckClick(this);"></TD>
</TR>
<%
adoRS.MoveNext
loop
%>
</TABLE></P>
Maybe it applied your changes incorrectly... I thought i would have to implement some java script to pass the check box value into the form.....
Cheers very much for your help in advance! Kathryne