HtmlMobileTextWriter.WriteHiddenField(String, String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Writes a hidden field with the given name and value. This API is obsolete. 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)
Parameters
- name
- String
The name of the hidden field.
- value
- String
The value of the hidden field.
Remarks
A hidden field is in the form <input type="hidden" name="name" value="value">.
Applies to
See also
Samarbeta med oss på GitHub
Källan för det här innehållet finns på GitHub, där du även kan skapa och granska ärenden och pull-begäranden. Se vår deltagarguide för mer information.