Click here to Skip to main content
15,884,702 members
Articles / Web Development / HTML

Programmatic Login to CodeProject.com Website

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
11 Sep 2012CPOL2 min read 29.7K   745   8  
How to login into a website programatically.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>
</head>
<body>
    <form method="post" action="https://www.codeproject.com/script/Membership/LogOn.aspx?rp=%2f">
    Email
    <input type="text" name="Email" id="Email" style="width: 150px" />
    Password
    <input type="password" name="Password" id="Password" style="width: 60px" />
    <input type="submit" value="Sign in" class="button" />
    </form>
</body>
</html>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
India India
Software developer by profession, working for a service and product based organisation in India.

Career graph:
Software Programmer since 2002.
Web Developer in ASP.NET since 2004.

Interests:
I love reading the blogs and articles of technology experts. I love codeproject and stackoverflow .

I love to share knowledge and help the programmers. I appreciate if some body corrects my code or my concepts which helps me learn.

Comments and Discussions