使用asp盡量減少服務器端的工作量,這樣就應該多使用javascript,把所有提交字段使用javascript或vbscript檢測后提交給服務器,這樣服務器就不必再作檢測,而在提交時可能會有人修改script從本地提交,這樣存在安全提交的問題,所以應該要求從服務器斷路徑提交,其他地址提交提交無無效: <% 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 "你提交的路徑有誤,禁止從站點外部提交數(shù)據(jù)請不要亂該參數(shù)!" response.write "</td></tr></table></center>" response.end end if %> 比如說上面的代碼起名為check_path.asp保存,每次遇到表格提交時引用就行了: <!--#include file="check_path.asp"-->
內容原文:http://www.95time.cn/bbs/archivecontent.asp?id=42857
出處:藍色理想
責任編輯:cjj
◎進入論壇網絡編程版塊參加討論
|