Im having problems using HttpWebRequest and POST method to send info to a third party server to validate a username, i keep getting error 405 not method allowed, so i was thinking if it is possible to make a login using the method GET, but i have no knowledge about this topic so i would like to ask for some help, a tutorial or reference or if someone has a small method.
well thanks in advance.
Using GET instead of POST, you just add the parameters to the query string instead.
Is the same as POSTing a form with two values, username and password.