This topic is locked

Remember password checkbox

3/16/2006 3:37:09 AM
ASPRunnerPro General questions
N
NigelEtienne author

Can any tell me how to set the remember password checkbox to unchecked as the default?

I have amended LOGIN.ASP from

<input type=checkbox name=remember_password value=""<%=strChecked%>>

[b]to


<input type=checkbox name=remember_password value="][color=#FF0000]0"<%=strChecked%>>

but this has no effect are ther any other lines of code that need to be changed?

Sergey Kornilov admin 3/16/2006

Hi,
open login.php file and replace

<input type=checkbox name=remember_password value="0"<%=strChecked%>>



with

<input type=checkbox name=remember_password value="0"<%=strUnChecked%>>

N
NigelEtienne author 3/16/2006

Hi,

open login.php file and replace
with


Many thanks for the quick reply