Click here to Skip to main content
15,885,216 members
Articles / Desktop Programming / Windows Forms

Password Manager and Web Form Filler

Rate me:
Please Sign up or sign in to vote.
2.00/5 (1 vote)
26 Jul 2007CPOL3 min read 23.4K   649   17  
How to build a simple user account manager which can automatically login to websites.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace EnigmaLib
{
    public class AccountManager
    {
        public List<Account> accountlist;
        public Account selectedaccount;
        public AccountManager()
        {
        }

        public Account GetAccount(string accountname)
        {
            return accountlist.First(x => x.Name.ToLower() == accountname.ToLower());
        }

    }
}

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
Netherlands Netherlands
Loek van den Ouweland is a freelance Web Developer from The Netherlands.

Comments and Discussions