Ask a Question related to ASP Database, Design and Development.
-
+FarmerPickles #1
ASP PW question.. i think
Is there somewhere that might have a code example for a user that forgot
their password?/ and maybe get it mailed ot them?? Like maybe, have them
choose a question to answer, when they register, then they can answer that
question if they forget it, and if correct, the PQW will et amiled to them?
Or something similiar to this process.
Anyone have any direction they can point me to on this one?
Thanks
FP
+FarmerPickles Guest
-
Newbie Question: Biz Card Template Question
Hi, I got the Pagemaker PlugIn - I am using one of the templates for Business Cards - the elements appear to be grouped (bound box all around when I... -
Good morning or good evening depending upon your location. I want to ask you the most important question of your life. Your joy or sorrow for all eternity depends upon your answer. The question is: Are you saved? It is not a question of how good you
<RonGrossi382872@yahoo.com> wrote in message news:1114393703.900419.199790@f14g2000cwb.googlegroups.com... This is the most important question of... -
Bullschmidt #2
Re: ASP PW question.. i think
You may want to check for a script like that here:
HotScripts.com
[url]http://www.hotscripts.com[/url]
Planet Source Code
[url]http://www.planet-source-code.com[/url]
Best regards,
J. Paul Schmidt, Freelance ASP Web Consultant
[url]http://www.Bullschmidt.com[/url]
ASP Design Tips, ASP Web Database Demo, Free ASP Bar Chart Tool...
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
Bullschmidt Guest
-
Ken Schaefer #3
Re: ASP PW question.. i think
For starters - where are you storing the password? In a database? What
database? in Active Directory? etc.
There's probably heaps of code samples if you use google...
Cheers
Ken
"+FarmerPickles" <gig_bam@verizon.net> wrote in message
news:eV3c%232WJEHA.1944@TK2MSFTNGP10.phx.gbl...
: Is there somewhere that might have a code example for a user that forgot
: their password?/ and maybe get it mailed ot them?? Like maybe, have them
: choose a question to answer, when they register, then they can answer that
: question if they forget it, and if correct, the PQW will et amiled to
them?
: Or something similiar to this process.
: Anyone have any direction they can point me to on this one?
: Thanks
: FP
:
:
Ken Schaefer Guest
-
+FarmerPickles #4
Re: ASP PW question.. i think
yes.. i am storing in an access DB, that contains all the user info for a
golf team reporting system.
FP
"Ken Schaefer" <kenREMOVE@THISadOpenStatic.com> wrote in message
news:eFJwdHcJEHA.2456@TK2MSFTNGP12.phx.gbl...them> For starters - where are you storing the password? In a database? What
> database? in Active Directory? etc.
>
> There's probably heaps of code samples if you use google...
>
> Cheers
> Ken
>
> "+FarmerPickles" <gig_bam@verizon.net> wrote in message
> news:eV3c%232WJEHA.1944@TK2MSFTNGP10.phx.gbl...
> : Is there somewhere that might have a code example for a user that forgot
> : their password?/ and maybe get it mailed ot them?? Like maybe, havethat> : choose a question to answer, when they register, then they can answer> : question if they forget it, and if correct, the PQW will et amiled to
> them?
> : Or something similiar to this process.
> : Anyone have any direction they can point me to on this one?
> : Thanks
> : FP
> :
> :
>
>
+FarmerPickles Guest
-
Ken Schaefer #5
Re: ASP PW question.. i think
So, have a form which the user can enter their username into.
Then, you do a lookup in the database to see if there is a matching
username, eg:
<%
strUsername = Replace(Request.Form("txtUserName"), "'", "''")
strSQL = _
"SELECT Email, UserPassword " & _
"FROM Users " & _
"WHERE Username = '" & strUserName & "'"
Set objRS = objConn.Execute strSQL
arrResults = objRS.GetRows
objRS.Close
Set objRS = nothing
objConn.Close
Set objConn = Nothing
If not isArray(arrResults) then
' User Does Not Exist
' Display Error Page
Else
' User Does Exist
' Use CDONTS or CDOSYS
' to generate email to: arrResults(0,0)
' and set message to contain password: arrResults(1,0)
Response.Redirect("passwordSent.asp")
End If
%>
Cheers
Ken
"+FarmerPickles" <gig_bam@verizon.net> wrote in message
news:OIqvsIdJEHA.3104@TK2MSFTNGP10.phx.gbl...
: yes.. i am storing in an access DB, that contains all the user info for a
: golf team reporting system.
: FP
:
: "Ken Schaefer" <kenREMOVE@THISadOpenStatic.com> wrote in message
: news:eFJwdHcJEHA.2456@TK2MSFTNGP12.phx.gbl...
: > For starters - where are you storing the password? In a database? What
: > database? in Active Directory? etc.
: >
: > There's probably heaps of code samples if you use google...
: >
: > Cheers
: > Ken
: >
: > "+FarmerPickles" <gig_bam@verizon.net> wrote in message
: > news:eV3c%232WJEHA.1944@TK2MSFTNGP10.phx.gbl...
: > : Is there somewhere that might have a code example for a user that
forgot
: > : their password?/ and maybe get it mailed ot them?? Like maybe, have
: them
: > : choose a question to answer, when they register, then they can answer
: that
: > : question if they forget it, and if correct, the PQW will et amiled to
: > them?
: > : Or something similiar to this process.
: > : Anyone have any direction they can point me to on this one?
: > : Thanks
: > : FP
: > :
: > :
: >
: >
:
:
Ken Schaefer Guest



Reply With Quote

