哪写错了?
runmode:1;
test:='test';
<%
set oexcel=createobject("excel.application")
oexcel.visible=true
oexcel.workbooks.add
test=ffl.strvardata("test")
oexcel.cells(1,1)=test(1)
%>
runmode:1;
variable:test[1]='';
test[1]:='test';
<%
set oexcel=createobject("excel.application")
oexcel.visible=true
oexcel.workbooks.add
test=ffl.strvardata("test")
oexcel.cells(1,1)=test(1)
%>
这么写也不行呀!
runmode:1;
test:='test';
<%
set oexcel=createobject("excel.application")
oexcel.visible=true
oexcel.workbooks.add
test=ffl.strvardata("test")
oexcel.cells(1,1)=test
%>
runmode:1;
variable:test[1]='';
test[1]:='test';
<%
set oexcel=createobject("excel.application")
oexcel.visible=true
oexcel.workbooks.add
test=ffl.strvardata("test")
oexcel.cells(1,1)=test(1)
%>
这么写为啥不行?
那怎么声明数组?