asp网站中的“网站描述”内,怎么样去除html代码?
asp网站中的“网站描述”内,怎么样去除html代码?http://zhidao.baidu.com/question/404822954.html...
asp网站中的“网站描述”内,怎么样去除html代码?http://zhidao.baidu.com/question/404822954.html
展开
展开全部
<%
Function RemoveHTML( strText )
nPos1 = InStr(strText, "<")
Do While nPos1 > 0
nPos2 = InStr(nPos1 + 1, strText, ">")
If nPos2 > 0 Then
strText = Left(strText, nPos1 - 1) & Mid(strText, nPos2 + 1)
Else
Exit Do
End If
nPos1 = InStr(strText, "<")
Loop
RemoveHTML = strText
End Function
%>
例子:
<%
dim html
html="内容"
Response.Write RemoveHTML(html)
%>
Function RemoveHTML( strText )
nPos1 = InStr(strText, "<")
Do While nPos1 > 0
nPos2 = InStr(nPos1 + 1, strText, ">")
If nPos2 > 0 Then
strText = Left(strText, nPos1 - 1) & Mid(strText, nPos2 + 1)
Else
Exit Do
End If
nPos1 = InStr(strText, "<")
Loop
RemoveHTML = strText
End Function
%>
例子:
<%
dim html
html="内容"
Response.Write RemoveHTML(html)
%>
展开全部
需要写一个函数就ok 了。然后 调用的 地方 调用一下就行了。网上有 现成的。去除html 的 asp 函数的。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2012-04-05 · 知道合伙人软件行家
关注
展开全部
吧标签转掉即可
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询