Hello
I am attempting to develop code in a file called passRecovery1.aspx that will invite a user who has forgotten his password to input his email address in a TextBox. The code in passRecovery1.aspx.vb should check that the email address exists in the database,
and send a message with a randomly generated password with a link to the user.
In order to personalise that email to the user, as in 'Hello Johnny',
do I need to include a text field in passRecovery1.aspx for the user's name, as well as his email address, in order to do that?
The code I have at the moment in passRecovery1.aspx.vb is:
Dim cmd As OleDbCommand = New OleDbCommand
Dim conn As New OleDbConnection()
Dim adp As OleDbDataAdapter
Protected Sub btnPassSend_Click(sender As Object, e As EventArgs) Handles btnPassSend.Click
...
Go to the complete details ...