basicly the subject explains what im trying to do
i have a menu for manufactures and it is connected to a db
i have a session variable named sessmanufacture
when u click on the manufacture say BMW i want sessmanufacture="BMW"
easy, then i want my second meny modles, to pick up on the session variable and sort all entries in my database (modles) by their manufacture (all that is setup)
i donno what im doing rong, and ive been trying Response.Write to see what sessmanufacture is set to but nothing ever comes up, i fugure its because it isnt refreshing, but im boggled, lol i ushally do
VB not ASP lol ne help would be much appriciated, Thanks!
this is my MAnufacture menu
-----------------------------------------------
<select name="manmenu" id="manmenu">
<%
While (NOT getmanu.EOF)
%>
<option value="<%=(getmanu.Fields.Item("Manufactures").Val ue)%>" onClick="(Session("sessmanufacture")=Request.Form( "manmenu")> <%=(getmanu.Fields.Item("Manufactures").Value)%> </option>
<%
getmanu.MoveNext()
Wend
If (getmanu.CursorType > 0) Then
getmanu.MoveFirst
Else
getmanu.Requery
End If
%>
</select>