|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
因为ASP脚本语言非常简单,因此其代码也简单易懂,结合HTML代码,可快速地完成网站的应用程序。还无法完全实现一些企业级的功能:完全的集群、负载均横。程序文章转译自ASP101
运转情况,NT(SERVER、WORKSTATION)、W2K
服务器上必要安装WSH2.0大概更高版本
假如您的体系今朝没有安装WSH2.0,您能够从以下这个地点往下载它
http://www.microsoft.com/msdownload/vbscript/scripting.asp
内里包括了WSH2.0
上面是源代码
<%@Language="VBScript"%>
<%OptionExplicit%>
<%
IfRequest.Form("frmHost")=""Then
设置初始值
strIP=Request.ServerVariables("REMOTE_ADDR")
Else
strIP=Request.Form("frmHost")
EndIf
%>
<html>
<head>
<title>DNSLookup[v1.0]</title>
</head>
<bodybgcolor="#FFFFFF">
<formMethod="POST"Name="frmRDNS">
<labelfor="frmHost"><u>Host:</u></label>
<inputtype="text"name="frmHost"ID="frmHost"
value="<%=strIP%>">
<inputtype="button"name="btnSubmit"ID="btnSubmit"
value="Lookup"onClick="document.frmRDNS.submit()">
</form>
<fontface="arial"size="2"color="#003366">
<%
rMethod=uCase(Request.ServerVariables("REQUEST_METHOD"))
IfrMethod="POST"Then
LookupHost
strReturn=nsLookup(strIP)
IfstrReturn""Then
Response.WritestrReturn
Else
ALameHostisanyValidHostthatDNSCannotResolve
SeeInterNicforDetails
Response.Write"<b>LameHost-CouldNotResolveDNSFor"_
&strIP&"</b><br>"
EndIf
EndIf
FunctionNSlookup(strHost)
CreateShellObject
SetoShell=Server.CreateObject("Wscript.Shell")
RunNSLookupviaCommandPrompt
DumpResultsintoatemptextfile
oShell.Run"%ComSpec%/cnslookup"&strHost_
&">C:"&strHost&".txt",0,True
OpenthetempTextFileandReadouttheData
SetoFS=Server.CreateObject("Scripting.FileSystemObject")
SetoTF=oFS.OpenTextFile("C:"&strHost&".txt")
tempData=Null
Data=Null
i=0
DoWhileNotoTF.AtEndOfStream
Data=Trim(oTF.Readline)
Ifi>2ThenDontwanttodisplaylocalDNSInfo.
tempData=tempData&Data&"<BR>"
EndIf
i=(i+1)
Loop
Closeit
oTF.Close
DeleteIt
oFS.DeleteFile"C:"&strHost&".txt"
SetoFS=Nothing
nsLookup=tempData
EndFunction
%>
</font>
</body>
</html>
代码很复杂,我未几说了,假如您对WSH有甚么疑问的话,请往下载WSH的电子文档
中文版本的,CHINAASP下载区就有的吧
但愿能对你有所匡助。
</p>当然了,现在国内CRM厂商的产品与其说是CRM,但从至少从我的角度分析上来看,充其量只是一个大型的进销存而已了,了解尚浅,不够胆详评,这里只提技术问题 |
|