MsgBox Web Control Help

MsgBox.CreateMessageScript Method 

This function is called when one of the Execute methods is called. It outputs the following script functionality when the web form is rendered:

[Visual Basic]
Private Sub CreateMessageScript( _
   ByVal Msg As String, _
   ByVal PromptValue As String _
)
[C#]
private void CreateMessageScript(
   string Msg,
   string PromptValue
);

Parameters

Msg
The message string to display in the message box.
PromptValue
The string displayed in the text portion of a prompt() message box.

Remarks

PromptValue is only used for prompt() message boxes and is ignored in all other cases.

See Also

MsgBox Class | BWare.UI.Web.WebControls Namespace