kozak98
|
 |
| Joined: 28 Jul 2004 |
| Total Posts: 11 |
| |
|
need some help with layers Posted: 22 Feb 2002 07:20 AM |
I need to create some layers......
so if one check box is chosen then in a <table> will apear some options (like radio buttons and pull down menues), and if another check box is chosen then there will apear other options.
this is going to probably be very difficult becuase the options and pull down menues that should apear are being taken out of a database.
I have already gotten some help with how to make the options in the drop down menu change when a checkbox is chosen, but i am finding it really difficult to change the options so that they can be picked out of a database.
some one please help
thanks
Edited by - kozak98 on 02/22/2002 07:24:28
Edited by - kozak98 on 02/22/2002 07:54:03 |
|
|
 |
|
Admin
|
 |
 |
| Joined: 28 Jul 2004 |
| Total Posts: 15 |
| |
|
Re: Posted: 22 Feb 2002 09:34 PM |
What do you use to get the records out of the db??
can i see sample code or sample page?
|
|
|
 |
|
kozak98
|
 |
| Joined: 28 Jul 2004 |
| Total Posts: 11 |
| |
|
Re: Posted: 26 Feb 2002 06:50 AM |
This is the code that i use to get the info out of the database
first i open the connection to the database and then
this part out puts the info
<%
do while not record.EOF
response.write "<option>" & record("LocationName") & "</option>"
record.movenext
loop
record.movefirst
%>
|
|
|
 |
|