#12004/3/12 14:01:09
为什么我做的留言簿不能选择头像?
头像数据表为:face
留言数据表为:content
数据库为data.mdb
显示留言中头像为:
<img src="image/icon/<%=(Recordset1.Fields.Item("face").value)%>.gif" border="0">
添加留言中头像为:《动态列表菜单》
<select name="select" size="1">
<%
While (NOT Recordset2.EOF)
%>
<option value="<%=(Recordset2.Fields.Item("Face").value)%>"><%=(Recordset2.Fields.Item("Face").value)%></option>
<%
Recordset2.MoveNext()
Wend
If (Recordset2.CursorType > 0) Then
Recordset2.MoveFirst
Else
Recordset2.Requery
End If
%>
</select>
不能用啊。