📄 passwordrecoveryradiobuttonlist.cs
字号:
//------------------------------------------------------------------------------
// <copyright company="Telligent Systems">
// Copyright (c) Telligent Systems Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
using System;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.ComponentModel;
using CommunityServer;
using CommunityServer.Components;
using CommunityServer.Controls;
namespace CommunityServer.Controls
{
/// <summary>
/// Summary description for PasswordRecoveryRadioButtonList.
/// </summary>
[DefaultProperty("Text"),
ToolboxData("<{0}:PasswordRecoveryRadioButtonList runat=server></{0}:PasswordRecoveryRadioButtonList>")]
public class PasswordRecoveryRadioButtonList : RadioButtonList
{
public PasswordRecoveryRadioButtonList() {
// only add email support if the admin has enabled email support and the users' password is stored in clear text.
// if the user's password is hashed
// if( CSContext.Current.SiteSettings.EnableEmail &&
// CSContext.Current.User.PasswordFormat == Microsoft.ScalableHosting.Security.MembershipPasswordFormat.Clear ) {
// this.Items.Add( new ListItem( ResourceManager.GetString("MemberSettings_RecoveryMode_Email"), PasswordRecovery.Email.ToString() ));
// }
this.Items.Add(new ListItem(ResourceManager.GetString("MemberSettings_RecoveryMode_Reset"), CommunityServer.Components.PasswordRecovery.Reset.ToString()));
this.Items.Add(new ListItem(ResourceManager.GetString("MemberSettings_RecoveryMode_Question"), CommunityServer.Components.PasswordRecovery.QuestionAndAnswer.ToString()));
}
public new CommunityServer.Components.PasswordRecovery SelectedValue
{
get { return (CommunityServer.Components.PasswordRecovery)Enum.Parse(typeof(CommunityServer.Components.PasswordRecovery), base.SelectedValue); }
set { base.SelectedValue = value.ToString(); }
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -