CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Apr 2013
    Posts
    1

    auto login to pop-up window in external website

    Is it possible to use javascript to automatically login to an external secure website that has a pop-up box for the login? It is not a form so I can not see the post or password parameters.

    Thanks.

  2. #2
    Join Date
    May 2002
    Posts
    10,943

    Re: auto login to pop-up window in external website

    All a form does is post data to a server-side authentication system. AJAX can do the same thing. It's still posting data just as a form does. Just figure out where it's going and you can post to it.

    However, note that if the author does it right, he/she will program the server to only accept requests from the same domain. In that case, you're out of luck.
    If the post was helpful...Rate it! Remember to use [code] or [php] tags.

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

Featured