|
 |
asp_databases thread: Password help
Message #1 by "Phil Perks" <philp@w...> on Fri, 28 Apr 2000 12:6:54
|
|
-----Original Message-----
From: Warren S. Wyght [mailto:wswyght@t...]
Sent: 27 April 2000 21:55
To: support@w...
Subject: Beginning ASP Databases
I bought the book Beginning ASP Databases ISPN #1-861002-72-6
On page 690 is the start of code for a login page, on page 691 close to the
bottom of the page is this code
<td>Password</td>
<td><input type="text" name="txtPassword" size="15"></td>
the code works well, but I can not find any help in this book nor can I
figure out how to make the code put a asterisk * in the place of what ever
is typed into the text box.
Could you please point me in the correct direction. Where can I find the
help I need or could you please just show me the code I need.
Thanks
Warren S. Wyght
Message #2 by "Romita Roy" <romita_roy@y...> on Fri, 28 Apr 2000 12:41:32
|
|
Just change the type to password instead of text.
So instead of
<td><input type="text" name="txtPassword" size="15"></td>
you write
<td><input type="password" name="txtPassword" size="15"></td>
This should do the trick.
Romita.
On 04/28/00, ""Phil Perks" <philp@w...>" wrote:
> -----Original Message-----
From: Warren S. Wyght [mailto:wswyght@t...]
Sent: 27 April 2000 21:55
To: support@w...
Subject: Beginning ASP Databases
I bought the book Beginning ASP Databases ISPN #1-861002-72-6
On page 690 is the start of code for a login page, on page 691 close to
the
bottom of the page is this code
<td>Password</td>
<td><input type="text" name="txtPassword" size="15"></td>
the code works well, but I can not find any help in this book nor can I
figure out how to make the code put a asterisk * in the place of what ever
is typed into the text box.
Could you please point me in the correct direction. Where can I find the
help I need or could you please just show me the code I need.
Thanks
Warren S. Wyght
Message #3 by Chris Ullman <chrisu@w...> on Fri, 28 Apr 2000 12:50:07 +0100
|
|
This something that can be achieved using only HTML. Setting the INPUT
tag attribute TYPE to text is incorrect, as the TYPE attribute of the
INPUT tag actually provides a password TYPE which I believe will
automatically substitute the letters for asterisks for you. If you have
any more HTML queries then you might want to take a look in HTML Code
Clinic list which has just opened, which might be a more suitable
place to put this type of question.
Chris
-----Original Message-----
From: Warren S. Wyght [mailto:wswyght@t...]
Sent: 27 April 2000 21:55
To: support@w...
Subject: Beginning ASP Databases
I bought the book Beginning ASP Databases ISPN #1-861002-72-6
On page 690 is the start of code for a login page, on page 691 close to the
bottom of the page is this code
<td>Password</td>
<td><input type="text" name="txtPassword" size="15"></td>
the code works well, but I can not find any help in this book nor can I
figure out how to make the code put a asterisk * in the place of what ever
is typed into the text box.
Could you please point me in the correct direction. Where can I find the
help I need or could you please just show me the code I need.
Thanks
Warren S. Wyght
---
You are currently subscribed to asp_databases
Message #4 by "Matthew Lohr" <mlohr@t...> on Fri, 28 Apr 2000 08:18:28 -0400
|
|
Ok how do we subscribe to the HTML Code Clinic
-----Original Message-----
From: Chris Ullman [mailto:chrisu@w...]
Sent: Friday, April 28, 2000 7:50 AM
To: ASP Databases
Subject: [asp_databases] RE: Password help
This something that can be achieved using only HTML. Setting the INPUT
tag attribute TYPE to text is incorrect, as the TYPE attribute of the
INPUT tag actually provides a password TYPE which I believe will
automatically substitute the letters for asterisks for you. If you have
any more HTML queries then you might want to take a look in HTML Code
Clinic list which has just opened, which might be a more suitable
place to put this type of question.
Chris
-----Original Message-----
From: Warren S. Wyght [mailto:wswyght@t...]
Sent: 27 April 2000 21:55
To: support@w...
Subject: Beginning ASP Databases
I bought the book Beginning ASP Databases ISPN #1-861002-72-6
On page 690 is the start of code for a login page, on page 691 close to the
bottom of the page is this code
<td>Password</td>
<td><input type="text" name="txtPassword" size="15"></td>
the code works well, but I can not find any help in this book nor can I
figure out how to make the code put a asterisk * in the place of what ever
is typed into the text box.
Could you please point me in the correct direction. Where can I find the
help I need or could you please just show me the code I need.
Thanks
Warren S. Wyght
---
You are currently subscribed to asp_databases
---
You are currently subscribed to asp_databases
Message #5 by Daniel Walker <danielw@w...> on Fri, 28 Apr 2000 13:39:03 +0100
|
|
Write to me direct, anyone who's interested, at
danielw@w...
and I'll subscribe you.
Dan
-----Original Message-----
From: Matthew Lohr
Sent: Friday, April 28, 2000 13:18
To: ASP Databases
Subject: [asp_databases] RE: Password help
Ok how do we subscribe to the HTML Code Clinic
-----Original Message-----
From: Chris Ullman [mailto:chrisu@w...]
Sent: Friday, April 28, 2000 7:50 AM
To: ASP Databases
Subject: [asp_databases] RE: Password help
This something that can be achieved using only HTML. Setting the INPUT
tag attribute TYPE to text is incorrect, as the TYPE attribute of the
INPUT tag actually provides a password TYPE which I believe will
automatically substitute the letters for asterisks for you. If you have
any more HTML queries then you might want to take a look in HTML Code
Clinic list which has just opened, which might be a more suitable
place to put this type of question.
Chris
-----Original Message-----
From: Warren S. Wyght
Sent: 27 April 2000 21:55
To: support@w...
Subject: Beginning ASP Databases
I bought the book Beginning ASP Databases ISPN #1-861002-72-6
On page 690 is the start of code for a login page, on page 691 close to the
bottom of the page is this code
<td>Password</td>
<td><input type="text" name="txtPassword" size="15"></td>
the code works well, but I can not find any help in this book nor can I
figure out how to make the code put a asterisk * in the place of what ever
is typed into the text box.
Could you please point me in the correct direction. Where can I find the
help I need or could you please just show me the code I need.
Thanks
Warren S. Wyght
|
|
 |