Results 1 to 8 of 8

Thread: How can I login to my schools website to check my grades?

  1. #1

    Thread Starter
    New Member
    Join Date
    Feb 2007
    Posts
    8

    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.

  2. #2
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    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?

  3. #3

    Thread Starter
    New Member
    Join Date
    Feb 2007
    Posts
    8

    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.

  4. #4
    Lively Member
    Join Date
    Jun 2006
    Location
    City of Angles. Right Angles.
    Posts
    110

    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.

  5. #5

    Thread Starter
    New Member
    Join Date
    Feb 2007
    Posts
    8

    Re: How can I login to my schools website to check my grades?

    Im using VB 6.0

  6. #6
    Lively Member
    Join Date
    Jun 2006
    Location
    City of Angles. Right Angles.
    Posts
    110

    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.

  7. #7

    Thread Starter
    New Member
    Join Date
    Feb 2007
    Posts
    8

    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.

  8. #8
    Lively Member
    Join Date
    Jun 2006
    Location
    City of Angles. Right Angles.
    Posts
    110

    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
  •  



Click Here to Expand Forum to Full Width