CreateUserWizard.CompleteSuccessText 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置网站用户帐户创建成功后所显示的文本。
public:
virtual property System::String ^ CompleteSuccessText { System::String ^ get(); void set(System::String ^ value); };
public virtual string CompleteSuccessText { get; set; }
member this.CompleteSuccessText : string with get, set
Public Overridable Property CompleteSuccessText As String
属性值
网站用户帐户创建成功后所显示的文本。 默认值为“已成功创建帐户”。控件的默认文本根据服务器的当前区域设置进行本地化。
示例
下面的代码示例使用 OnCreatedUser 方法更改 属性, CompleteSuccessText 以在显示的文本中包含用户名。
<%@ page language="C#"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
void OnLoggedInHandler (object sender, EventArgs e)
{
Createuserwizard1.CompleteSuccessText =
String.Format("{0}, thanks for creating an account with us.",
Context.User.Identity.Name);
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>
CreateUserWizard Sample</title>
</head>
<body>
<form id="form1" runat="server">
<asp:createuserwizard id="Createuserwizard1" runat="server"
oncreateduser="OnLoggedInHandler">
</asp:createuserwizard>
</form>
</body>
</html>
<%@ page language="VB"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
Sub OnLoggedInHandler(ByVal sender As Object, ByVal e As EventArgs)
Createuserwizard1.CompleteSuccessText = _
String.Format("{0}, thanks for signing up for an account.", _
Context.User.Identity.Name)
End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>
CreateUserWizard Sample</title>
</head>
<body>
<form id="form1" runat="server">
<asp:createuserwizard id="Createuserwizard1" runat="server"
oncreateduser="OnLoggedInHandler">
</asp:createuserwizard>
</form>
</body>
</html>
注解
CompleteSuccessText使用 属性更改成功创建用户帐户时显示的消息。
设置此属性的值时,可以使用设计器工具自动保存到资源文件。 有关详细信息,请参阅 LocalizableAttribute 和 全球化和本地化。