Ask a Question related to ASP.NET General, Design and Development.
-
Matthew C #1
password vs. text
Hello,
I have a single line input box and when it is set to "password" the value in
it dissapears during form submits, but persists when simply set to "text".
How do I set and or persist the PASSWORD field?
thanks for listening.
M
Matthew C Guest
-
How to secure database password? (was Perl/DBI newbie: password storage / security question)
Zedgar, You are chasing the yourself into circles. Security is dictated by circumstances and resources available. In our case, we had plenty of... -
How to secure database password? (was Perl/DBI newbie: password storage / security question)
Hello, Many thanks to R. Joseph Newton, Motherofperls, essential quint and Chuck Fox for answering my questions, however it is still not what I... -
How to secure database password? (was Perl/DBI newbie: password stora...
The only solutions I've discovered is: ( for less secure tables) 1. Crypt the password 2. Put it into directory not in the public domain 3. Set... -
Connecting to MySQL without storing password in clear text
In article <20030913005411.2b5c2365.ian@WINDOZEdigiserv.net>, Ian.H 's output was... Or, if you have a webhost who don't give you any space which... -
Password TextBox VeiwState Text
Why Password Textbox do not Save VeiwState doing Refreshing of page and how do I accomplish this? -
George Ter-Saakov #2
Re: password vs. text
My understanding it's how browsers work.
They do not allow to set value for <input type="password">
George.
"Matthew C" <dotnet@noveris.com> wrote in message
news:X_0La.67849$Io.6356851@newsread2.prod.itd.ear thlink.net...in> Hello,
>
> I have a single line input box and when it is set to "password" the value> it dissapears during form submits, but persists when simply set to "text".
>
> How do I set and or persist the PASSWORD field?
>
> thanks for listening.
>
> M
>
>
>
George Ter-Saakov Guest
-
Vidar Petursson #3
Re: password vs. text
Hi
This is one way
<input name="sPassword" ID="sPassword" type="password"
value="<%=strPassword%>">
You could also send a script(JavaScript) to the client to set the password
--
Best Regards
Vidar Petursson
==============================
Microsoft Internet Client & Controls MVP
==============================
"Matthew C" <dotnet@noveris.com> wrote in message
news:X_0La.67849$Io.6356851@newsread2.prod.itd.ear thlink.net...in> Hello,
>
> I have a single line input box and when it is set to "password" the value> it dissapears during form submits, but persists when simply set to "text".
>
> How do I set and or persist the PASSWORD field?
>
> thanks for listening.
>
> M
>
>
>
Vidar Petursson Guest
-
Vidar Petursson #4
Re: password vs. text
Hi
No password element is NOT read only
example
<input type="password" onfocus="this.value='yadda'">
but input type="file" is read only
--
Best Regards
Vidar Petursson
==============================
Microsoft Internet Client & Controls MVP
==============================
"George Ter-Saakov" <we@hotmail.com> wrote in message
news:u$LzeOOPDHA.452@TK2MSFTNGP11.phx.gbl...value> My understanding it's how browsers work.
> They do not allow to set value for <input type="password">
>
>
> George.
>
> "Matthew C" <dotnet@noveris.com> wrote in message
> news:X_0La.67849$Io.6356851@newsread2.prod.itd.ear thlink.net...> > Hello,
> >
> > I have a single line input box and when it is set to "password" the"text".> in> > it dissapears during form submits, but persists when simply set to>> >
> > How do I set and or persist the PASSWORD field?
> >
> > thanks for listening.
> >
> > M
> >
> >
> >
>
Vidar Petursson Guest



Reply With Quote

