Mit link i Select boks virker ikke
Nedstående select boks bliver fint vist med strVisLink, men linket virker ikke... kan man ikke putte link på i en selectboks?<select name="LnavnSelect" style="width:100px" class="formR">
<option value="0">Alle</option>
<!--#include virtual= "DBConn.asp" -->
<%
strSQL = "Select * From xxxTabel Order by blomst"
Set rs = Conn.Execute(strSQL)
Do
valgt=""
if request("LnavnSelect") = rs("blomst") then
valgt= "selected"
else
valgt=""
end if
strVisBlomst = "<option value='" & rs("blomst") & "' "& valgt &">" & rs("blomst") & "</option>"
strVisLink="<a href='http://xxxxxx/"& strVisBlomst &".asp'>" & strVisBlomst &"</a>"
Response.Write strVisLink
rs.MoveNext
Loop While Not rs.EOF
Conn.Close
Set Conn = Nothing
%>
</select>
Mvh fauer
