这个是我三级联动的代码,怎么我点他没有反应望各位大虾们指正,谢谢!!
<select name="sf" id="sf">
<%
While (NOT xq_province.EOF)
%><option value="<%=(xq_province.Fields.Item("provinceID").Value)%>" <%If (Not isNull((xq_city.Fields.Item("father").Value))) Then If (CStr(xq_province.Fields.Item("provinceID").Value) = CStr((xq_city.Fields.Item("father").Value))) Then Response.Write("selected=""selected""") : Response.Write("")%> ><%=(xq_province.Fields.Item("province").Value)%></option>
<%
xq_province.MoveNext()
Wend
If (xq_province.CursorType > 0) Then
xq_province.MoveFirst
Else
xq_province.Requery
End If
%>
</select>省
<label>
<select name="select">
<%
While (NOT xq_city.EOF)
%><option value="<%=(xq_city.Fields.Item("father").Value)%>" <%If (Not isNull((xq_province.Fields.Item("provinceID").Value))) Then If (CStr(xq_city.Fields.Item("father").Value) = CStr((xq_province.Fields.Item("provinceID").Value))) Then Response.Write("selected=""selected""") : Response.Write("")%> ><%=(xq_city.Fields.Item("city").Value)%></option>
<%
xq_city.MoveNext()
Wend
If (xq_city.CursorType > 0) Then
xq_city.MoveFirst
Else
xq_city.Requery
End If
%>
</select>
市</label>
<label>
<select name="select2">
<%
While (NOT xq_area.EOF)
%><option value="<%=(xq_area.Fields.Item("father").Value)%>" <%If (Not isNull((xq_city.Fields.Item("cityID").Value))) Then If (CStr(xq_area.Fields.Item("father").Value) = CStr((xq_city.Fields.Item("cityID").Value))) Then Response.Write("selected=""selected""") : Response.Write("")%> ><%=(xq_area.Fields.Item("area").Value)%></option>
<%
xq_area.MoveNext()
Wend
If (xq_area.CursorType > 0) Then
xq_area.MoveFirst
Else
xq_area.Requery
End If
%>
</select>
区\县</label>
<span class="STYLE12"><strong>*