asp 數(shù)組顯示方法

清華大佬耗費(fèi)三個(gè)月吐血整理的幾百G的資源,免費(fèi)分享!....>>>

const genderStr = "0|女|,1|男|"
function arrShow(id,str)
	list=Split(str,",")
	for each row in list
		cell=Split(row,"|")
		if cell(0) = ""&id&"" then
			show = cell(1)
		end if
	next
	arrShow = show
end function