添加時(shí)間:2013/2/8 11:36:28 編輯:奇億網(wǎng)站建設(shè)公司
<%
content="遠(yuǎn)程獲取的全部?jī)?nèi)容"
start=instr(content,"需要屏蔽的開頭內(nèi)容")
over=instr(content,"需要屏蔽的結(jié)束內(nèi)容")
if start>0 and over>0 then
str=mid(content,start,over-start)
content=replace(content,str," ")
end if
response.write content
%>
同理,該方式同樣適用于從數(shù)據(jù)庫讀取內(nèi)容屏蔽某些不想要的內(nèi)容方法。