Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

remove remember me check box from asp:login control

I want to create a login with ASP.NET 4 but without rememberMe check box. Is any way to do this?

like image 382
Majid Avatar asked Apr 01 '13 08:04

Majid


2 Answers

Take a look at this

If you are using that control, you just need to put something like below in your aspx file:

<asp:Login DisplayRememberMe="False" />
like image 50
Viktor S. Avatar answered Sep 20 '22 23:09

Viktor S.


Press the drop down menu and press Convert To Template. And then just delete it. In addition, there is a property which is DisplayRememberMe you can just put it false.

like image 39
7alhashmi Avatar answered Sep 22 '22 23:09

7alhashmi