Login.CreateUserText Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene o imposta il testo di un collegamento a una pagina di registrazione per nuovi utenti.
public:
virtual property System::String ^ CreateUserText { System::String ^ get(); void set(System::String ^ value); };
public virtual string CreateUserText { get; set; }
member this.CreateUserText : string with get, set
Public Overridable Property CreateUserText As String
Valore della proprietà
Testo del collegamento alla pagina di registrazione di nuovi utenti. Il valore predefinito è Empty.
Esempio
L'esempio di codice seguente imposta la CreateUserText proprietà su "Registrare un nuovo utente..."
Importante
Questo esempio contiene una casella di testo che accetta l'input utente, ovvero una potenziale minaccia di sicurezza. Per impostazione predefinita, le pagine Web ASP.NET verificano che l'input dell'utente non includa script o elementi HTML. Per altre informazioni, vedere Cenni preliminari sugli attacchi tramite script.
<%@ Page Language="C#" AutoEventWireup="False" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
void changeText_Click(Object sender, EventArgs e)
{
Login1.CreateUserText = Server.HtmlEncode(createText.Text);
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>ASP.NET Example</title>
</head>
<body>
<form id="form1" runat="server">
<table>
<tr>
<td>
Create User Text:
</td>
<td>
<asp:TextBox id="createText" runat="server" Text="Create user..." />
</td>
<td>
<asp:Button id="changeText" runat="server" Text="Change Text" OnClick="changeText_Click" />
</td>
</tr>
<tr>
<td colspan="3" align="center">
<asp:Login id="Login1" runat="server"
CreateUserText="Register new user..."
CreateUserUrl="register.aspx">
</asp:Login>
</td>
</tr>
</table>
</form>
</body>
</html>
<%@ Page Language="VB" AutoEventWireup="False" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
Sub changeText_Click(ByVal sender As Object, ByVal e As System.EventArgs)
Login1.CreateUserText = Server.HtmlEncode(createText.Text)
End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>ASP.NET Example</title>
</head>
<body>
<form id="form1" runat="server">
<table>
<tr>
<td>
Create User Text:
</td>
<td>
<asp:TextBox id="createText" runat="server" Text="Create user..." />
</td>
<td>
<asp:Button id="changeText" runat="server" Text="Change Text" OnClick="changeText_Click" />
</td>
</tr>
<tr>
<td colspan="3" align="center">
<asp:Login id="Login1" runat="server"
CreateUserText="Register new user..."
CreateUserUrl="register.aspx">
</asp:Login>
</td>
</tr>
</table>
</form>
</body>
</html>
Commenti
La CreateUserText proprietà contiene il testo di un collegamento alla pagina di registrazione per il sito. L'URL della pagina di registrazione viene specificato nella CreateUserUrl proprietà .
Se CreateUserUrl è vuoto, il testo nella CreateUserText proprietà viene visualizzato all'utente, ma non viene formattato come collegamento.
Se la CreateUserText proprietà è vuota, un collegamento alla pagina di registrazione non è disponibile per l'utente.
Il valore di questa proprietà, quando impostato, può essere salvato automaticamente in un file di risorse usando uno strumento di progettazione. Per altre informazioni, vedere LocalizableAttributee Globalizzazione e Localizzazione.