|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
源代码保护方面其实现在考虑得没那么多了..NET也可以反编译.ASP写得复杂的话别人能看得懂的话.他也有能力自己写了.这方面担心的倒不太多.纵观现在网上可以下载的那些所谓BBS还有什么网站等等的源代码<%
dimobjXML
dimobjRootElement
dimstrValue
dimstrInetURL
dimstrXML
dimitem
strInetURL="http://pf.inetsolution.com/inetactive2001/inetactive2001news.xml"
DimHttpReq
setHttpReq=server.CreateObject("MSXML2.XMLHTTP")
HttpReq.open"GET","http://pf.inetsolution.com/inetactive2001/inetactive2001news.xml",False
HttpReq.send
strXML=HttpReq.responseText
SetobjXML=Server.CreateObject("Msxml2.DOMDocument")
objXML.validateonparse=true
objXML.async=false
objXML.loadXML(strXML)
ifobjXML.ParseError.errorCode0then
Response.Write("Error:"&objXML.parseError.reason&"<br>")
Response.Write("Code:0x"&hex(objXML.parseError.errorCode)&"<br>")
Response.Write("AtLine:"&objXML.parseError.line&"<br>")
Response.Write("Atpos:"&objXML.parseError.linePos&"<br>")
else
setobjRootElement=objXML.documentElement
ifnotisObject(objRootElement)then
Response.Write("nofileloaded")
else
Response.Write(objRootElement.childnodes(0).text)
endif
endif
%>
对于中小型web应用来说,php有很强的竞争力,linux+apache+mysql+php(lamp)的组合几乎可以胜任绝大多数网站的解决方案,对于大型应用来讲,对于系统架构要求更高,需要有成熟的框架支持,jsp的struts是个不错的框架,国内介绍它的资料也非常多,应用逐渐广泛起来。asp就不用说了, |
|