|
-
Feb 19th, 2007, 07:43 PM
#1
Thread Starter
New Member
How can I login to my schools website to check my grades?
I already know how to do everything else, but every time I try to login using then Microsoft internet controls I can never get logged in. So is there a way using winsock to login to my schools website? Thanks.
-
Feb 20th, 2007, 07:56 AM
#2
Re: How can I login to my schools website to check my grades?
Welcome to the forums. 
Do you have the proper credentials and permissions to access your schools web site?
-
Feb 20th, 2007, 09:07 PM
#3
Thread Starter
New Member
Re: How can I login to my schools website to check my grades?
Yes, I do indeed have all the needed things to login (username, password, ect...) Also I was thinking there is a way that you can login with the URL because the school's site is written in PHP so cant I do www.aaaaa.com/login?username=****password=***? Just wondering because I saw that somewhere.
-
Feb 26th, 2007, 12:54 PM
#4
Lively Member
Re: How can I login to my schools website to check my grades?
In order to login by putting the credentials in the URL, the PHP script would have be set up fairly poorly security wise. Also, transmitting data like that across an unencrypted connection isn't the wisest thing to do in the world.
What flavor of VB are you using? If you are using a .NET variant, use the webclient and a namevalue collection. You just fill the collection with form parameters and then pass the collection into WebClient.PostValues I believe, along with the URL of the form.
-
Feb 27th, 2007, 09:44 PM
#5
Thread Starter
New Member
Re: How can I login to my schools website to check my grades?
-
Feb 28th, 2007, 12:28 AM
#6
Lively Member
Re: How can I login to my schools website to check my grades?
this page has information about how to send HTTP post data to a web site, but it uses the web browser control. It seems like it will do what you want though.
-
Feb 28th, 2007, 10:18 AM
#7
Thread Starter
New Member
Re: How can I login to my schools website to check my grades?
I was hoping to be able to use winsock. But I'll try this.
-
Feb 28th, 2007, 11:36 AM
#8
Lively Member
Re: How can I login to my schools website to check my grades?
Winsock is a very low level of socket communication. It is probably possible, but you have to learn the HTTP protocol and make a connection on port 80 and start sending HTTP POST commands. There is some good information on this on the w3 website.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|