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.