 |
咨询内容: |
| |
|
<%'取出斑竹回复意见
Set rs_f = Server.CreateObject("ADODB.Recordset")
sql_f = "select content from hainan_liuyanF where id_liuyan='"&id&"' and liuyan_type=1 "
rs_f.Open sql_f,conn,3
%>
| |
回复内容: |
<%if rs_f.BOF or rs_f.EOF then%>
| |
|
<%else
content_f=rs_f("content")
if isnull(content_f) or content_f="" then
content_f=null
else
content_f=replace(content_f,chr(32)," ")
content_f=replace(content_f,chr(13)&chr(10)," ")
end if
%>
| |
|
<%end if
rs_f.Close
set rs_f=nothing
%>
|