Does anyone know why my submit button is showing up at the top of my page, instead of after the form? I'm sure it's the order. I may need to imbed the submit button into vbscript, but not sure how to do it. Here is the part of the code that would affect things. Thanks everyone!!
<table width="500">
<form action="info2.asp" method="get">
<tr>
<td width="500" align="center">
<% 'Request the name of Category and the primary key from the tblCategory table.
SQLCK="SELECT Category, CategoryID FROM tblCategory"
set connck = server.createobject("ADODB.Connection"
connck.open "Checkboxes"
set tblCategory=connck.execute(SQLCK)
%>
<% 'Loop through the recordset to make each entry in the list. %>
<% do while not tblCategory.eof %>
<tr>
<td><font face="Arial,Helvetica" size=-1><%= tblCategory.Fields("Category"
.Value %></font></td>
<td><input type="checkbox" name="<%=tblCategory.Fields("CategoryID"
.Value %> value="-1"></td>
<% '<td> %>
<%' =tblCategory.Fields("CategoryID"
.Value %>
<%' </td> %>
</tr>
<%tblCategory.movenext
loop%>
<% connck.close %>
<p><input type="Submit" value="Proceed with Registration" align="LEFT">
<table width="500">
<form action="info2.asp" method="get">
<tr>
<td width="500" align="center">
<% 'Request the name of Category and the primary key from the tblCategory table.
SQLCK="SELECT Category, CategoryID FROM tblCategory"
set connck = server.createobject("ADODB.Connection"
connck.open "Checkboxes"
set tblCategory=connck.execute(SQLCK)
%>
<% 'Loop through the recordset to make each entry in the list. %>
<% do while not tblCategory.eof %>
<tr>
<td><font face="Arial,Helvetica" size=-1><%= tblCategory.Fields("Category"
<td><input type="checkbox" name="<%=tblCategory.Fields("CategoryID"
<% '<td> %>
<%' =tblCategory.Fields("CategoryID"
<%' </td> %>
</tr>
<%tblCategory.movenext
loop%>
<% connck.close %>
<p><input type="Submit" value="Proceed with Registration" align="LEFT">