Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ASP Dropdown List Update

Status
Not open for further replies.

Poloxstar

MIS
Jul 10, 2002
11
0
0
US
In need of assistance.

I have a table list with and a link to edit a techs data.
Once the page passes of over to the modift page it doesnt bring the results of the droplist box value.
How do I carry over that data also the dropdown auto populate through SQL Server.

Code Sample
<select name="SUPID" size="1" class="form"><% Do While Not sst.EOF %>
<option value="<% = sst("TechID") %>"><% = sst("LName") %></option>
<% sst.movenext %><% loop %>
</select>
 
Can you please explain your problem more briefly...

but if you are trying to capture the value of the drop down value on the next page then i think this will do

dim yourvar
yourvar=Request("SUPID")

yourvar will have the value selected in the drop down box...

-VJ
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top