Quote:
Originally Posted by rafitaes
Hi:
I want to start small projects like a program that logs into DarkOrbit and it answers with "Logged in" or "Wrong". I'll use C#
Appart of the knowledge of proggraming, what more should I learn and where I can find sites to learn about it?
Thanks you a lot,
Greetings.
|
For those things I recommend you to just abuse google, it will be your best friend.
For example: To login into DarkOrbit you've different methods,
- using a web browser and auto-filling the username/password input boxes (not efficient)
- use HTTP requests (best possible idea)
Lets assume you decide to use http requests, good decision. First would be great to know what `http` is, remember google is your friend. Once you understand the basics of it you can google again something like `C# http request` by doing that you can get interesting info about it, like this:
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
^ The official docs from microsoft are a good place to search.
.. and so on, if you need help feel free to ask
Regards.-