function GetAuditorInfoBySeqNo(filenostr,strSeqNo) Dim auditorInfo(3) sqltext ="select auditor from fileaudit where FileNO='"&filenostr&"' and seqNo='"&strSeqNo&"'" set rs_auditor = conn.Execute(sqltext) ifnot rs_auditor.eof then employeeid = rs_auditor("auditor") sqltext =" select * from employee where id="&employeeid set rs_em = conn.Execute(sqltext) auditorInfo(1) = rs_em("ID") auditorInfo(2) = rs_em("en_Name") auditorInfo(3) = rs_em("mail") endif GetAuditorInfoBySeqNo = auditorInfo end function