怎样不让浏览者手动修改URL参数?
比如我的一个新闻页面的URL为:ShowNews.asp?id=1
浏览者可以修改为:
ShowNews.asp?id=2
这样他就会看到我的另一条新闻了。
请问怎么不让浏览者手动修改URL参数?
当别人修改URL参数时会报错。
谢谢!
Public Function CheckFrom() CheckFrom = False 'On Error Resume Next Dim Server_S1 : Server_S1 = CStr(Request.ServerVariables("HTTP_REFERER")) Dim Server_S2 : Server_S2 = CStr(Request.ServerVariables("SERVER_NAME")) If Mid(Server_S1, 8, Len(Server_S2)) = Server_S2 Then CheckFrom = True End Function