remove remember me check box from asp:login control

asp.net, authentication, checkbox

Solution

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" />

Problem

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

Original source