The code in asp that allows function to return multiple values at the same time, friends in need can refer to it. Copy the code code as follows:
<%
call getMyNumber(aa,bb,cc)
response.write aa & & bb & <br /> & cc
function getMyNumber(byref aa,byref bb,byref cc)
aa=3
bb=4
cc =10
end function
%>