vote up 0 vote down star
1

Using jQuery, my client side is calling Vote from a page method. The signature of the webmethod is below.


    [WebMethod]
    public static string Vote(int selectedAnswer, int pollID, string userToken) {
    ... }

My question is in Vote(), how do I reference Page.Request so I can get the user's IP Address? In a normal page load method, I'm able to reference Page.Request because the page load method is NOT static, where Vote is.

flag

53% accept rate
Since this question is completely answered by stackoverflow.com/questions/964659/…, I'm voting to close it. – John Saunders Aug 16 at 20:52

2 Answers

vote up 3 vote down

You should be able to get it using: System.Web.HttpContext.Current

As the name implies HttpContext.Current gets the current HTTP context. You can get the Request object from the current context and go from there.

link|flag
vote up 0 vote down

some question here from me

Get IP Address of the requested client soap message

hope it helps...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.