I have a asp script that generates a menu from a database table the user selects one of the options then when that page is submitted it saves it to the database. I also have a editor script that allows the user to edit the information that they put into the database. How can I still use the database driven menu but have the default option selected (default being the original option that they submitted). I'm using the following code to generate my menu.<br><br><select name="storytype" size="1"><br><%<br>Dim stype<br>storytype.MoveFirst<br>do while Not storytype.eof<br>stype = PrepForHtml(storytype.Fields("storytype".Value)<br>%><br><option value="<%=stype%>"><%=stype%><br><%<br>storytype.MoveNext<br>loop%></select>