这是我朋友下的标准企业网站源代码,我觉得很好,希望也对大家有所帮助!

源代码在线查看: articlechar.inc

软件大小: 1599 K
上传用户: wlflove123
关键词: 标准 企业网站 源代码
下载地址: 免注册下载 普通下载 VIP

相关代码

								function htmlencode2(str)
				dim result
				dim l
				if isNULL(str) then
				htmlencode2=""
				exit function
				end if
				l=len(str)
				result=""
				dim i
				for i = 1 to l
				select case mid(str,i,1)
				case "				result=result+"<"
				case ">"
				result=result+">"
				case chr(13)
				result=result+""
				case chr(34)
				result=result+"""
				case "&"
				result=result+"&"
				case chr(32)	
				'result=result+" "
				if i+10 then
				if mid(str,i+1,1)=chr(32) or mid(str,i+1,1)=chr(9) or mid(str,i-1,1)=chr(32) or mid(str,i-1,1)=chr(9)  then	
				result=result+" "
				else
				result=result+" "
				end if
				else
				result=result+" "	
				end if
				case chr(9)
				result=result+"    "
				case else
				result=result+mid(str,i,1)
				end select
				next
				htmlencode2=result
				end function
				%>			

相关资源