get the address ip to visitors website in MVC4 rasor c#
hi please how i can get the address ip to any user visit my website thank you 
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Santhakumar MunuswamyPosted Feb 2, 2015, 10:39 PM
Could you try below concepts like Request.ServerVariables["REMOTE_ADDR"]
Ex.
string ipAddress=Request.ServerVariables["REMOTE_ADDR"];
I hope you will get idea or help full pls mark "Accept Answer"
Thank You