HtmlHelper.GenerateIdFromName Metodo
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.
Overload
GenerateIdFromName(String) |
Crea un ID dell'elemento HTML usando il nome dell'elemento specificato. |
GenerateIdFromName(String, String) |
Crea un ID dell'elemento HTML usando il nome dell'elemento specificato e una stringa che sostituisce i punti nel nome. |
GenerateIdFromName(String)
Crea un ID dell'elemento HTML usando il nome dell'elemento specificato.
public static string GenerateIdFromName (string name);
static member GenerateIdFromName : string -> string
Public Shared Function GenerateIdFromName (name As String) As String
Parametri
- name
- String
Nome dell'elemento HTML.
Restituisce
ID dell'elemento HTML.
Eccezioni
Il parametro name è null.
Si applica a
GenerateIdFromName(String, String)
Crea un ID dell'elemento HTML usando il nome dell'elemento specificato e una stringa che sostituisce i punti nel nome.
public static string GenerateIdFromName (string name, string idAttributeDotReplacement);
static member GenerateIdFromName : string * string -> string
Public Shared Function GenerateIdFromName (name As String, idAttributeDotReplacement As String) As String
Parametri
- name
- String
Nome dell'elemento HTML.
- idAttributeDotReplacement
- String
Stringa che sostituisce i punti (.) nel nome del parametro.
Restituisce
ID dell'elemento HTML.
Eccezioni
Il parametro name o il parametro idAttributeDotReplacement è null.