Hej. Löste det på följandde sätt. Kolla upp dina recordset lite bättre.Tabell till combo
Hur gör man för att ladda upp innehållet i en tabell till en combo?
//TorfiSv: Tabell till combo
<code>
<% Do While Not RecSet.EOF %>
<option value="<% = RecSet("CustCode") %>"><% = RecSet("CustName") %></option>
<%
'Till nästa stad
RecSet.MOVENEXT
LOOP
'Städar upp
RS.CLOSE
SET RS=NOTHING
%>
</select>
</code>
//TorfiSv:Tabell till combo
I vissa fall så skriver du RecSet i andra RS.
Du måste vara noga med dina variabler.
Ett gott råd använd dig av option explicit.