This is a migrated thread and some comments may be shown as answers.

remember password

5 Answers 245 Views
Input
This is a migrated thread and some comments may be shown as answers.
Gabriel Beauchamp
Top achievements
Rank 2
Gabriel Beauchamp asked on 07 Jun 2008, 05:17 AM
I have a login form with an email RadTextBox and a password RadTextBox. When I log in, FireFox asks me if I want to remember my password. I click on "Remember" and when I go back to the log in page, only the email RadTextBox is filled in automatically. The password RadTextBox is empty. How do I make the password fill in automatically?

Thanks,

5 Answers, 1 is accepted

Sort by
0
Konstantin Petkov
Telerik team
answered on 09 Jun 2008, 02:14 PM
Hello Gabriel,

Unfortunately the password remember functionality of Firefox is not supported by RadTextBox. We will research the problem further and hopefully can find a solution in future version of the product.

Please, excuse us for any inconvenience this has caused.

Regards,
Konstantin Petkov
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
The KID
Top achievements
Rank 2
answered on 16 Jun 2008, 03:10 PM
Has there been any development on this issue? I have the same problem.
0
Missing User
answered on 19 Jun 2008, 07:56 AM

Hello Mike,

ASP.NET provides a mechanism for you to use cookies for Forms authentication. Cookies are supported by most Web browsers, including Internet Explorer and Netscape Navigator. The following code example shows the Web.config file for an ASP.NET application that uses the ASP.NET membership provider for forms authentication and requires all users to be authenticated.

.web.config
    <authentication mode="Forms"
      <forms name="appNameAuth" path="/" loginUrl="login.aspx" protection="All" timeout="1"
        <credentials passwordFormat="Clear"
          <user name="jeff" password="jeff" /> 
        </credentials> 
      </forms> 
    </authentication> 
    <authorization> 
      <deny users="?" /> 
    </authorization> 

login.aspx

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="login.aspx.cs" Inherits="login" %> 
 
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> 
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
 
<html xmlns="http://www.w3.org/1999/xhtml" > 
<head runat="server"
    <title>Untitled Page</title> 
</head> 
<body> 
    <form id="form1" runat="server"
            <asp:ScriptManager ID="ScriptManager1" runat="server"
        </asp:ScriptManager> 
    <div> 
  <h3>Login</h3> 
 
  <asp:Label id="Msg" ForeColor="maroon" runat="server" /><br /> 
 
  Username: <telerik:RadTextbox id="UsernameTextbox" runat="server" /><br /> 
  Password: <telerik:RadTextbox id="PasswordTextbox" runat="server" TextMode="Password" /><br /> 
 
  <asp:Button id="LoginButton" Text="Login"  runat="server" OnClick="LoginButton_Click" /> 
  <asp:CheckBox id="NotPublicCheckBox" runat="server" />  
  Check here if this is <span style="text-decoration:underline">not</span> a public computer. 
    </div> 
    </form> 
</body> 
</html> 
 

I hope this helps

Kind regards,
Plamen
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
Daniel
Top achievements
Rank 1
answered on 24 Jun 2013, 01:44 PM
It appears the password remember features in Chrome and Firefox are still not supported by RadTextBox.  Are there plans to resolve this?
0
Vasil
Telerik team
answered on 27 Jun 2013, 07:15 AM
Hi Daniel,

It is already fixed in the latest 2 releases.

Regards,
Vasil
Telerik
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to the blog feed now.
Tags
Input
Asked by
Gabriel Beauchamp
Top achievements
Rank 2
Answers by
Konstantin Petkov
Telerik team
The KID
Top achievements
Rank 2
Missing User
Daniel
Top achievements
Rank 1
Vasil
Telerik team
Share this question
or