我们知道,想在一个操作系统执行任何一个操作都是需要用户的。然后操作系统会检查该用户是否有权限执行这个操作的权限,如果有,就会执行,如果没,就会拒绝。这和我们浏览网站是一样的道理,当我们在客户端输入一串URL并执行时,其实是向服务端发送要浏览的请求,在操作系统来看,它也是一个操作,也是需要用户的。以windows为例,它是用:匿名访问 Internet 信息服务的内置帐户来执行这个操作的,所以如...[ 查看全文 ]
dddggg [原作] Function SwitchExcelInfo(xlsFileName) Dim xlsStr Dim rs Dim i,j,k Dim ExcelConn Dim ExcelFile Dim objExcelApp Dim objExcelBook Dim bgColor xlsStr = "" ExeclFile = Server.MapPath(xlsFileName) Set objExcelApp = CreateObject("Excel.Application") objExcelApp.Quit Set objExcelApp = CreateObject("Excel.Application") objExcelApp.Quit objExcelApp.DisplayAle...[ 查看全文 ]
要求传入工号 返回员工姓名 '全局数据 考虑这样只要load一次 set Doc = CreateObject("Microsoft.XMLDOM") Doc.async = false Doc.load(Server.MapPath("user_cnname.xml")) function cnname_var (varusername) dim node,i,nodecount,root set nodeLis= Doc.getElementsByTagName("user") nodeCount = nodeLis.length For i=0 to nodeCount - 1 if nodeLis.item(i).childnodes.item(0)...[ 查看全文 ]