[求助]2个过程里如何传递变量?
private str1 as string
选择CHECKBOXLIST动态得到一个str1的值
sub getStr1_selectedindexchanged(.......)
str1=""
dim i as integer=0
for i=0 to checkbox1.items.count-1
if checkbox1.items(i).selected="true" then
str1+="insert table1 values('"+menberid.text+"','"+checkbox1.items(i).value+"') "
end if
(该过程经过测试能生成STR1的值)
end sub
把str1的值赋予PARAMETERS
function registration()
...........
myCommand.parameters("@str1").value=str1(问题是这个变量得不到这个值,如果直接把变量换成语句就可以执行了)
end function
提交注册
sub btn_click(......)
........
registration()
end sub
首先:选择CHECKBOXLIST,ID为GETSTR1
再来:按BTN,同时调用函数REGISTRATION()
不知道为什么?不理解
[此贴子已经被作者于2006-2-24 17:05:27编辑过]