|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
源代码保护方面其实现在考虑得没那么多了..NET也可以反编译.ASP写得复杂的话别人能看得懂的话.他也有能力自己写了.这方面担心的倒不太多.纵观现在网上可以下载的那些所谓BBS还有什么网站等等的源代码----------------------------------------------------------------------
函数功效: 屏障HTML代码
参 数: StrInput用户输出信息
----------------------------------------------------------------------
functionFunInput(StrInput)
ifnotisnull(Str)then
StrInput=RePlace(StrInput,"<","<")
StrInput=replace(StrInput,">",">")
StrinPut=replace(Strinput,chr(32),"")
strinput=replace(strinput,chr(34),""")
strinput=replace(strinput,chr(39),"")
strinput=replace(strinput,chr(13),"")
FunInput=strinput
endif
endfunction
----------------------------------------------------------------------
函数功效: 避免SQL注进
参 数: StrValue用户提交的数据
BloType数据范例
参数值:true数值型数据
false字符型数据
----------------------------------------------------------------------
functionFunSQL(StrValue,BloType)
ifBloTypethen
ifIsnumeric(StrValue)then
FunSQL=clng(StrValue)
else
StrValue=0
endif
else
ifnotisnull(StrValue)then
StrValue=lcase(StrValue)
StrValue=Replace(StrValue,"","")
StrValue=replace(StrValue,"select","")
StrValue=replace(StrValue,"update","")
StrValue=replace(StrValue,"insert","")
StrValue=replace(StrValue,"delete","")
StrValue=replace(StrValue,";","")
StrValue=replace(StrValue,"","")
StrValue=replace(StrValue,chr(255),"")
StrValue=replace(StrValue,"*","")
StrValue=replace(StrValue,"%","")
endif
endif
FunSQL=StrValue
endfunction
--------------------------------------------------------------------------
函数功效: 经常使用范例转换
参数:_Type 数据范例
_Value数据
参数值:_Type1:转换成数值型数据
_Type2:转换成字符型数据
_Type3:转换成布尔型数据
--------------------------------------------------------------------------
functionFunSwitch(Value_,Type_)
onerrorresumenext
selectcaseType_
case1
ifisnumeric(Value_)then
ifnotisnull(Value_)then
FunSwitch=clng(Value_)
else
FunSwitch=0
endif
else
FunSwitch=0
endif
case2
ifnotisnull(Value_)then
FunSwitch=cstr(Value_)
else
FunSwitch=""
endif
case3
ifnotisnull(Value_)andisnumeric(Value_)then
FunSwitch=cbool(Value_)
else
FunSwitch=false
endif
caseelse
response.redirect("Error.asp?err=请指定FunSwitch中要传达换成的数据范例!")
endselect
iferr.number0then
response.redirect("Error.asp?err=数据转换时发生未知毛病!")
err.clear
endif
endfunction
----------------------------------------------------------------------
函数功效: 考证是数据是不是来自内部
参数:无
----------------------------------------------------------------------
functioncheckfrom()
server_v1=Cstr(Request.ServerVariables("HTTP_REFERER"))
server_v2=Cstr(Request.ServerVariables("SERVER_NAME"))
ifmid(server_v1,8,len(server_v2))server_v2then
checkfrom=true
else
checkfrom=false
endif
endfunction
----------------------------------------------------------------------
函数功效: JS提醒框
参数:StrURL:点击断定后前往到的页面地点
StrMSG:对话框的提醒信息
----------------------------------------------------------------------
FunctionFunMsg(StrURL,StrMSG)
Response.write"<scriptlanguage=javascript>"&_
Vbcrlf&"alert("""&StrMSG&""");"&_
Vbcrlf&"window.location="""&StrURL&""";"&_
Vbcrlf&"</script>"
EndFunction
--------------------------------------------------------------------------
函数功效: 通用分页
参数:Intpagecount 总页数
Intmypage以后页数
Intrecordcount纪录总数
Intpagesize每页显现的纪录数
--------------------------------------------------------------------------
functionfunpage(Intpagecount,Intmypage,Intrecordcount,Intpagesize)
onerrorresumenext
dimIntfor,Intlist,intlist_b
Dimquery,a,x,temp
action="http://"&Request.ServerVariables("HTTP_HOST")&Request.ServerVariables("SCRIPT_NAME")
query=Split(Request.ServerVariables("QUERY_STRING"),"&")
ForEachxInquery
a=Split(x,"=")
IfStrComp(a(0),"page",vbTextCompare)0Then
temp=temp&a(0)&"="&a(1)&"&"
EndIf
Next
ifintmypage>1then
funpage=funpage&"<ahref="&action&"?"&temp&"page=1title=最前页class=no><fontface=Webdings>9</font></a>"
funpage=funpage&"<ahref="&action&"?"&temp&"page="&Intmypage-1&"title=上一页class=no><fontface=Webdings>7</font></a>"
else
funpage=funpage&"<fontface=Webdings>9</font>"
funpage=funpage&"<fontface=Webdings>7</font>"
endif
ifIntlist0then
ifcintmypage=Intlistthen
Intlist=Intlist+5
endif
else
Intlist=Intmypage+5
endif
ifintlist-9<1then
intlist_b=1
else
intlist_b=intlist-9
endif
forIntfor=intlist_btoIntlist
ifintfor<=Intpagecountthen
ifintfor=Intmypagethen-------使以后页笔墨为白色,其实不可点击
funpage=funpage&strMode&"<fontcolor=#FF0000><b>"&Intfor&"</b></font>"
else
funpage=funpage&strMode&"<ahref="&action&"?"&temp&"page="&Intfor&"class=no>"&Intfor&"</a>"
endif
endif
strMode="<fontcolor=#BBBBBB>|</font>"
next
ifintmypage<intpagecountthen
funpage=funpage&"<ahref="&action&"?"&temp&"page="&Intmypage+1&"title=后一页class=no><fontface=Webdings>8</font></a>"
funpage=funpage&"<ahref="&action&"?"&temp&"page="&Intpagecount&"title=最初页class=no><fontface=Webdings>:</font></a>"
else
funpage=funpage&"<fontface=Webdings>8</font>"
funpage=funpage&"<fontface=Webdings>:</font></a>"
endif
funpage="<tablewidth=100%border=0cellspacing=0cellpadding=0><tr>"&_
vbcrlf&"<tdwidth=40%style=font:14px>以后第"&Intmypage&"页 "&Intpagesize&"条/页 共"&Intpagecount&"页/"&Intrecordcount&"笔记录</td>"&_
vbcrlf&"<tdwidth=60%align=right>"&_
vbcrlf&"<tablewidth=360border=0cellspacing=0cellpadding=0><tr>"&_
vbcrlf&"<tdalign=rightstyle=font:14px>"&funpage&"</td>"&_
vbcrlf&"</tr></table></td></tr>"&_
vbcrlf&"</table>"
iferr.number0then
err.clear
response.redirect("error.asp?err=分页函数堕落,请与办理员接洽!|")
endif
endfunction
***************************************************
函数名:Highlight
功效:搜刮的关头词以高亮的色彩显现
参数strText是要被高亮显现的字符串或变量地点的字串或变量
strFind是要被高亮显现的字符串或变量,
strBefore被高亮显现的HTML代码前缀如:<fontcolor=red>
strAfter被高亮显现的HTML代码的后缀:</font>
*****************************************************
FunctionHighlight(strText,strFind,strBefore,strAfter)
DimnPos
DimnLen
DimnLenAll
nLen=Len(strFind)
nLenAll=nLen+Len(strBefore)+Len(strAfter)+1
Highlight=strText
IfnLen>0AndLen(Highlight)>0Then
nPos=InStr(1,Highlight,strFind,1)
DoWhilenPos>0
Highlight=Left(Highlight,nPos-1)&_
strBefore&Mid(Highlight,nPos,nLen)&strAfter&_
Mid(Highlight,nPos+nLen)
nPos=InStr(nPos+nLenAll,Highlight,strFind,1)
Loop
EndIf
EndFunction
Windows本身的所有问题都会一成不变的也累加到了它的身上。安全性、稳定性、跨平台性都会因为与NT的捆绑而显现出来; |
|