使用asp盡量減少服務(wù)器端的工作量,這樣就應(yīng)該多使用javascript,把所有提交字段使用javascript或vbscript檢測后提交給服務(wù)器,這樣服務(wù)器就不必再作檢測,而在提交時(shí)可能會(huì)有人修改script從本地提交,這樣存在安全提交的問題,所以應(yīng)該要求從服務(wù)器斷路徑提交,其他地址提交提交無無效:
<%
server_v1=Cstr(Request.ServerVariables("HTTP_REFERER"))
server_v2=Cstr(Request.ServerVariables("SERVER_NAME"))
if mid(server_v1,8,len(server_v2))<>server_v2 then
response.write "<br><br><center><table border=1 cellpadding=20 bordercolor=black bgcolor=#EEEEEE width=450>"
response.write "<tr><td style='font:9pt Verdana'>"
response.write "你提交的路徑有誤,禁止從站點(diǎn)外部提交數(shù)據(jù)請(qǐng)不要亂該參數(shù)!"
response.write "</td></tr></table></center>"
response.end
end if
%>
比如說上面的代碼起名為check_path.asp保存,每次遇到表單提交時(shí)引用就行了:
<!--#include file="check_path.asp"-->
更多信息請(qǐng)查看IT技術(shù)專欄