programming faqs interview questions tech technical educational freshers guide preparation interviews hr telephonic
try another color:
try another fontsize: 60% 70% 80% 90%
Programming FAQs

how to get the visitors ip address in asp?

using

using Request.ServerVariables we can get the users ip address
below statement prints the user's ip on broswer

<% Response.Write Request.ServerVariables("REMOTE_ADDR") %>