Detecting if the request raised from the deployment machine or some client

If Request.UserHostAddress = Request.ServerVariables("LOCAL_ADDR") Then
MsgBox("Request is generated from same server")
Else
MsgBox("Request is generated from a client")
End If

No comments:

Post a Comment