M
Mike
With the help of the forum, I have a pulldown in an
edit.asp page working so I can select different project
types instead of using the normal text field.
My next question is how can the pulldown work coming from
the database. Currently I have this code in my edit.asp
page:
<select size="1" name="projType">
<option selected value="<%=fp_rs("projType")%>"><%=fp_rs
("projType")%></option>
<option value="Commercial">Commercial</option>
<option value="Housing">Housing</option>
<option value="In Progress">In Progress</option>
<option value="Null">Null</option>
<option value="Restaurant">Restaurant</option>
<option value="Retail">Retail</option>
</select>
How can I have the pulldown get its information from the
database (like it does in the form for creating the
record). This way, if my client creates new project
types, they are available without any further
intervention on my part.
-M
edit.asp page working so I can select different project
types instead of using the normal text field.
My next question is how can the pulldown work coming from
the database. Currently I have this code in my edit.asp
page:
<select size="1" name="projType">
<option selected value="<%=fp_rs("projType")%>"><%=fp_rs
("projType")%></option>
<option value="Commercial">Commercial</option>
<option value="Housing">Housing</option>
<option value="In Progress">In Progress</option>
<option value="Null">Null</option>
<option value="Restaurant">Restaurant</option>
<option value="Retail">Retail</option>
</select>
How can I have the pulldown get its information from the
database (like it does in the form for creating the
record). This way, if my client creates new project
types, they are available without any further
intervention on my part.
-M