|
|
|
|
|
| | Total Hits: 7 | Today: 0 | Author: Utsav | Rating:  |
| |  This is a tutorial to how to make password reminder page in your application. It first takes the username and email address input from the User and then checks whether the username exit or not then generates the random password and then mails the reset password to the user's mail address.... |
| | Total Hits: 41 | Today: 0 | Author: Keith Brown | Rating:  |
| |  In my last column I introduced Password Minder, the tool I use to manage all of my passwords. It generates a long, random password for each site I visit, and makes it possible for me to use the most complex passwords possible, without ever having to see the actual password material or type it in manually. If you didn't have a chance to read that column, you should go do that now, otherwise this column won't make much sense!
This time, I'll take you on a tour of the guts of how Password Mi... |
| | Total Hits: 90 | Today: 0 | Author: admin under | Rating:  |
| |  This guide will show you how to store your user passwords in an ASP.NET - or Windows Forms - application. Or rather - it will show you the secret is to NOT store the actual password. I'll explain later, don't worry.
There is always a risk of someone getting their hands of sensitive information - and user accounts and passwords sure counts as sensitive data, don't you think? Let's investigate what we can do to make it harder for an intruder to get their hands of such things.... |
| | Total Hits: 107 | Today: 0 | Author: xicoloko. | Rating:  |
| |  In this article I will show you how to authenticate users so as to protect pages from being seen without permission. It uses a set of ASP files that will be included to each page that needs protection. In the example the authetication occurs with a couple of StrComp comparsions, but in real world it should be done using a table or a COM component.... |
| | Total Hits: 170 | Today: 0 | Author: tommy skaue. | Rating:  |
| |  Do you have a website where users need to login, and when they do you compare the password they enter with a column in a usertable? Some people do logins like this. It's easy to program and it works just fine. But what if someone got hold of the usertable and all the passwords of everyone? You may want to hide or encrypt the passwords in the usertable. Many programming languages have functions to do this. I make ASP-webpages, and I haven't found any quick functions to do this. There are plenty o... |
| | Total Hits: 9 | Today: 0 | Author: mbanavige | Rating:  |
| |  Ever wanted to change the password of the local administrator account (or any local user account for that matter) in .net? Here's how: Code is in white on blue!... |
| | Total Hits: 1 | Today: 0 | Author: nimish_soft | Rating:  |
| |  This is simple and effective method for generation of a random password... |
| | Total Hits: 4 | Today: 0 | Author: AzamSharp | Rating:  |
| |  Most of the web application consists of login pages which authenticate the user based on username and password. For the registoration purposes you might need to create a random password and email the password to the user and than the user has to use that password to log to the website. In this article we will see how we can create a random password.... |
| | Total Hits: 54 | Today: 0 | Author: Gopi Darisipudi | Rating:  |
| |  Ever worry abt others walking to your PC/Notebook and browsing your folders when you forgot to lock it? Don’t worry Now…Here is a simple solution that you can implement by yourself and you don’t have to lock your desktop ever!!
I am sure that there are some shareware/free utilities available on the Internet, which you can download to get Password protection for your folders. If you are like me and don’t want to clutter your personal computer with downloaded software, then here i... |
| | Total Hits: 110 | Today: 0 | Author: admin under | Rating:  |
| |  In part 1 you got the background - lets look at the sample code. It's a Windows Forms application and shows you the different types of storing solutions discussed. It uses a SQL Server database - and to create the tables the script is available from within the app.... |
| | Total Hits: 304 | Today: 0 | Author: Harish Ranganathan | Rating:  |
| |  Setting the text property for a textbox with textmode=single and multiline is pretty straight forward by giving TextBox1.Text = "The text we want to set"; However, if we set the Textmode property to Password, then we cannot simply set the text using the TextBox.text. In practical scenarios, we may not want to set the password for obvious reasons that password is one which we retrieve from the user and it shoult not be set. Also, even if we set some password, the user cannot read it as it i... |
| | Total Hits: 425 | Today: 0 | | Rating:  |
| |  This article contains a simple code written by Remas Wojciechowski which shows two password fields usable for your web page.... |
| | Total Hits: 1 | Today: 0 | Author: Baidehish Dwibedy | Rating:  |
| |  PassProt is a password storage and encryption/decryption tool intended for personal use. Often we deal with remembering or writing down the tons of user ids and passwords used in daily life, e.g. accounts in banks, work, libraries, insurance and the list goes on. To avoid writing these passwords in an unsecured location like a piece of paper or a file in work/home computer or in the PDA, this tool is developed.... |
| | Total Hits: 2 | Today: 0 | Author: daegan | Rating:  |
| |  The ASP.NET built in password recovery tool is pretty cool. With a few exceptions:
1. It doesn't validate 2. It only requires a username to continue the process, not a username/email match 3. It sends a very basic email to whoever is recovering their password... |
| | Total Hits: 1 | Today: 0 | Author: Stefan Holmberg | Rating:  |
| |  This function can be used to have a random password generated. It allows you to specify valid characters as well as specifying number of characters.... |
| | Total Hits: 20 | Today: 0 | Author: Microsoft Corporation | Rating:  |
| |  This sample demonstrates how to implement a custom UserNamePassword Validator. This is useful in cases where none of the built-in UserNamePassword Validation modes is appropriate for the requirements of the application; for example, when username/password pairs are stored in some external store, such as a database. This sample shows a service that has a custom validator that checks for two particular username/password pairs. The client uses such a username/password pair to authenticate to the se... |
| | Total Hits: 116 | Today: 0 | Author: AzamSharp | Rating:  |
| |  Sometimes we need to generate random passwords for users. In this small article we will see two techniques that will generate unique passwords.... |
| | Total Hits: 166 | Today: 0 | Author: Peter Persits | Rating:  |
| |  As a commercial ASP developer, you are almost certain to be given the task of designing a password-protected Web site. When that happens, you will have to make a decision about how to store user password information securely, and then be able to justify your choice to your boss or client.... |
| | Total Hits: 77 | Today: 0 | Author: Manikantan Vedachalam | Rating:  |
| |  Want to Create a random password and mail it to the person who tried to register at your site? Here is a quick and easy example of how to do this task. It is fairly straight forward.... |
| | Total Hits: 134 | Today: 0 | Author: Eric Coffman | Rating:  |
| |  A few months ago I decided it was time to learn ASP. I started out using some code samples from around the web, and eventually learned to write some of it myself. I recently read Sams Teach Yourself Active Server Pages 3.0 in 21 Days which helped me clean up my coding techniques.... |
|
|
|
|
|
|
|
|
|
|
|
|
|