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