X
xiaodaihehehe
Unregistered / Unconfirmed
GUEST, unregistred user!
我有做了个论坛是asp+acccess的,我想做个下拉框,控制论坛显示数据库的排序方式
我是这样做的
先写个函数
function tt(str)
if comeform.order.options(0).selected then
str="select * from newsinfo order by replasttime desc"
end if
if comeform.order.options(1).selected then
str="select * from newsinfo order by time desc"
end if
End Function
之后表单这样写:
<form name=comeform >
.....
<select name="order" >
<option value="reptime">按回复时间
<option value="onewstime">按发贴时间
</select >
<input type="button" name="sel" value="Go" onClick="tt(sql)">
我的数据库这样设置:
....
rs.open sql,conn,1,1
.....
可是不行
请问大侠:我的这种思路对吗?
如果哪位大侠指点一二,小妹不胜感激!!
如果哪位大侠有相关源码相送,小妹感激涕零!!!!!
我是这样做的
先写个函数
function tt(str)
if comeform.order.options(0).selected then
str="select * from newsinfo order by replasttime desc"
end if
if comeform.order.options(1).selected then
str="select * from newsinfo order by time desc"
end if
End Function
之后表单这样写:
<form name=comeform >
.....
<select name="order" >
<option value="reptime">按回复时间
<option value="onewstime">按发贴时间
</select >
<input type="button" name="sel" value="Go" onClick="tt(sql)">
我的数据库这样设置:
....
rs.open sql,conn,1,1
.....
可是不行
请问大侠:我的这种思路对吗?
如果哪位大侠指点一二,小妹不胜感激!!
如果哪位大侠有相关源码相送,小妹感激涕零!!!!!