Problems with KartrisLogin.ascx


https://forum.kartris.com/Topic3621.aspx
Print Topic | Close Window

By t_rick_s - Sun 15 Feb 2015
It's about the radio buttons at the login page.

By default it looks like this:
<li>
<asp:RadioButtonList runat="server" ID="rblNeworOld" AutoPostBack="true" CssClass="radio">
<asp:ListItem Text="<%$ Resources: Kartris, ContentText_NewCustomers %>" Value="New" />
<asp:ListItem Text="<%$ Resources: Kartris, ContentText_AlreadyHaveAccount %>" Value="Existing" />
</asp:RadioButtonList><asp:Literal ID="litMessage" runat="server" />
<br />
</li>
But I don't get the "New"-button. I need to modify the code like this by adding an extra new-button:
<li>
<asp:RadioButtonList runat="server" ID="rblNeworOld" AutoPostBack="true" CssClass="radio">
<asp:ListItem Text="<%$ Resources: Kartris, ContentText_NewCustomers %>" Value="New" />
<asp:ListItem Text="<%$ Resources: Kartris, ContentText_NewCustomers %>" Value="New" />
<asp:ListItem Text="<%$ Resources: Kartris, ContentText_AlreadyHaveAccount %>" Value="Existing" />
</asp:RadioButtonList><asp:Literal ID="litMessage" runat="server" />
<br />
</li>
Not an ideal solution.
Any ideas on where to modify code? CSS? VB? I've tried several places but this is the only way I don't get errors...
By Paul - Mon 16 Feb 2015
Check your frontend.users.access setting. This hides the new account sign up for cases where users are to be denied access without approval (so users cannot create accounts themselves).
By t_rick_s - Mon 16 Feb 2015
Yes! That solved it!

It was set to "Browse". After changeing it to "no" it works as a charm.

Thank you Paul!