this should get you started
all you need to do is add the DB name and tbl name plus the name of the rs to fill the select
<HTML>
<BODY>
<%
' declare variables
Dim Conn
Dim RS
Dim strConn
Set conn = Server.CreateObject("ADODB.Connection"

'set path to DB dsn-less
strConn="Driver=Microsoft Access Driver (*.mdb); DBQ=" & server.mappath("/database.mdb"

& ";"
'sql statement
SQLstmt="SELECT * FROM tbl"
Set RS = Server.CreateObject("ADODB.RecordSet"

conn.Open strConn
'
Set RS = Conn.Execute(SQLstmt)
%>
<FORM name="form1">
<SELECT NAME="sel1">
<%
Do While Not RS.EOF
Response.Write ("<OPTION value='" & RS("PARTDESCRIPTION"

& "'>"

Response.Write ("</OPTION>"

rs.MoveNext
Loop
RS.Close
Set RS=Nothing
Conn.Close
Set Conn=Nothing
%>
</SELECT>
</FORM>
</BODY>
</HTML> I help at your own risk, if I brake it sorry! But if I fixed it, let me know with a
![[thumbsup2] [thumbsup2] [thumbsup2]](/data/assets/smilies/thumbsup2.gif)
admin@onpntwebdesigns.com