HtmlWindow.Prompt(String, String) Method

Definition

Shows a dialog box that displays a message and a text box to the user.

C#
public string Prompt(string message, string defaultInputValue);
C#
public string? Prompt(string message, string defaultInputValue);

Parameters

message
String

The message to display to the user.

defaultInputValue
String

The default value displayed in the text box.

Returns

A String representing the text entered by the user.

Remarks

Prompt provides a quick, easy way to obtain simple text input from the user.

Applies to

Produkt Versioner
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

See also