HtmlMobileTextWriter.WriteHiddenField(String, String) Método

Definição

Grava um campo oculto com o nome e o valor fornecidos.Writes a hidden field with the given name and value. Esta API está obsoleta.This API is obsolete. Para saber mais sobre como desenvolver aplicativos móveis ASP.NET, veja Mobile Apps & Sites with ASP.NET (Aplicativos móveis e sites com ASP.NET).For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

public:
 void WriteHiddenField(System::String ^ name, System::String ^ value);
public void WriteHiddenField (string name, string value);
member this.WriteHiddenField : string * string -> unit
Public Sub WriteHiddenField (name As String, value As String)

Parâmetros

name
String

O nome do campo oculto.The name of the hidden field.

value
String

O valor do campo oculto.The value of the hidden field.

Comentários

Um campo oculto está no formato <input type="hidden" name="name" value="value"> .A hidden field is in the form <input type="hidden" name="name" value="value">.

Aplica-se a