这段数组的代码在asp.net中怎么写,只有几行
myvo= "茄子|黄瓜|西红柿 "
votenum= " "
for i=0 to ubound(split(myvo, "| "))
votenum=votenum& "0 "
if i <> ubound(split(myvo, "| ")) then votenum=votenum& "| "
next
在asp中我会,
结果
votenum=0|0|0
这是我做的一个投票功能,大家帮帮忙啊
------解决方案--------------------string myvo= "茄子|黄瓜|西红柿 ";
string[] ary = myvo.Split( '| ');
for(int i=0;i <ary.Length;i++)
{
///代码
}