a=Request.QueryString("a")
b=Request.QueryString("b")
c=Request.QueryString("c")
set rs = server.CreateObject ("adodb.recordset")
sql="select * from news where a='"&&"' and b='"&b&"' and c='"&c&"' order by id desc"
rs.open sql,conn,1,1
response.Write("<div id=show >")
if not rs.bof then
do while not rs.eof
response.Write("<li onMouseOver=""this.style.background='#d7ebff'"" onMouseOut=""this.style.background='#ffffff'"" onclick=""javascript:fillin(this.innerHTML);"">"&rs("title")&"</li>")
rs.movenext
loop
end if
response.Write("</div>")