|
|
|
<%
sql="select * from bose"
set rs=application("conn").execute(sql)
while not rs.eof
%>
|
| #1>
<%=rs("name")%> |
<%
rs.movenext
wend
%>
|
<%
if request.querystring("id")="" then
sql="select * from bose"
else
sql="select * from bose where id="&request.querystring("id")
end if
set rs1=application("conn").execute(sql)
if not rs1.eof then
response.write "| "&rs1("name")&" | "
response.write "&") | "
response.write "| | "
response.write " "&replace(rs1("content"),vbcrlf," ")&" | "
end if
%>
|