asp.net 3.5

How to use ASP.NET Membership class to retrieve users from the store in VB.NET

If you want to retrieve a single user and a list of users through the Membership class from the membership store, you can create a simple page with a GridView control for binding the users to the grid, as follows:

<html xmlns=”https://www.w3.org/1999/xhtml”>
<head runat=”server”>
<title>Display Users Page</title>
</head>
<body>
<form id=”form1″ runat=”server”>
<div>
<asp:GridView ID=”UsersGridView” runat=”server” DataKeyNames=”UserName” AutoGenerateColumns=”False”>
<Columns>
<asp:BoundField DataField=”UserName” HeaderText=”Username” />
<asp:BoundField DataField=”Email” HeaderText=”Email” />
<asp:BoundField DataField=”CreationDate” …

Learn more

How to use ASP.NET Membership class to retrieve users from the store in C#

If you want to retrieve a single user and a list of users through the Membership class from the membership store, you can create a simple page with a GridView control for binding the users to the grid, as follows:

<html xmlns=”https://www.w3.org/1999/xhtml”>

<head runat=”server”>

<title>Display Users Page</title>

</head>

<body>

<form id=”form1″ …

Learn more

How to use ASP.NET Membership CreateUserWizard control events in VB.NET

You can use the approach explained in the article How to use ASP.NET Membership CreateUserWizard control to create additional wizard steps. In this case you need to handle events and perform some actions within event procedures. For example if you are planning to collect additional information from the user with the wizard, you have to store …

Learn more

How to use ASP.NET Membership CreateUserWizard control events in C#

You can use the approach explained in the article How to use ASP.NET Membership CreateUserWizard control to create additional wizard steps. In this case you need to handle events and perform some actions within event procedures. For example if you are planning to collect additional information from the user with the wizard, you have to store …

Learn more

How to use ASP.NET Membership CreateUserWizard control

The CreateUserWizard control enables you to create registration pages very quickly. This control is a wizard control with two default steps:

1. For querying general user information.

2. For displaying a confirmation message.

As the CreateUserWizard inherits from the base Wizard control, and you add as many wizard …

Learn more

How to use ASP.NET Membership ChangePassword control

You can use this control when you want to allow the user to change his/her password. The control simply queries the user name as well as the old password from the user. Then it requires the user to enter the new password and confirm the new password. You can use the control on a secured page …

Learn more

How to customize ASP.NET membership PasswordRecovery control in C#

You can customize the PasswordRecovery control completely, by using templates for every view:

–  The UserNameTemplate contains all the controls displayed for the first step of the password recovery process when the user is required to enter the user name.

–  The control of the password question step which is placed in …

Learn more

How to use ASP.NET membership PasswordRecovery control

You, as software engineer, can use the PasswordRecovery control to solve the issues with all users who have forgotten their passwords.  This control queries the user name from the user and afterward automatically displays the password question stored for the user in the credential store. If the user provides the correct for the password question, the password is …

Learn more