"Remember Password" Functionality
-
Hi Friends, I am developing a website in asp.net. I have seperate textboxes for email and password in the table which is being defined in "asp:Login" control of c# Visual Studio 2005. Now I want to put "Remember my Password" checkbox in that table just below of text boxes. When user select that checkbox, it should remind the password and automatically get login next time. Please remember I can't use any built-in control, I definitely need separate checkbox for that. It is just same as you have here in this website (www.codeproject.com) Thanks and Regards, Abubakar
-
Hi Friends, I am developing a website in asp.net. I have seperate textboxes for email and password in the table which is being defined in "asp:Login" control of c# Visual Studio 2005. Now I want to put "Remember my Password" checkbox in that table just below of text boxes. When user select that checkbox, it should remind the password and automatically get login next time. Please remember I can't use any built-in control, I definitely need separate checkbox for that. It is just same as you have here in this website (www.codeproject.com) Thanks and Regards, Abubakar
You can store it on the user machine, in a cookie.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
You can store it on the user machine, in a cookie.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
Ya, I can store it on user machine in a cookie but I really don't understand how will I get value from the cookie and login to website automatically when user will come next time? Can you send me some code snipset for that? It will be really helpful for me.