asp 网站 网站首页

来源:百度知道 编辑:UC知道 时间:2024/05/14 07:03:58
有什么方法 让网站首页的公司介绍里面 只显示文字 不显示图片 在内页的公司介绍里面 文字和图片都显示
我在后台本地上传公司图片后 首页就会变形 网站是我制作的 谢谢 给位大虾

屏蔽<img>之间的代码:

<%
Dim ImgCode,regEx,Matches,Content,NewContent
Content="数据库内容"

Set regEx = New RegExp
regEx.Pattern = "<img src=(.+?)>"
regEx.IgnoreCase = True
regEx.Global = True
Set Matches = regEx.Execute(Content)
For Each Match in Matches
ImgCode=Match.SubMatches(0)
NewContent=Replace(Content,ImgCode,"")
Next
Response.write NewContent
%>