PowerTools InputMan for ASP.NET 8.0J
Show(String,String) メソッド
使用例 

メッセージボックスに表示するテキスト (String型)
入力欄の初期値 (String型)
入力メッセージボックスを表示します。
構文
Public Overloads Sub Show( _
   ByVal promptMsg As String, _
   ByVal defaultPromptMsg As String _
) 
public void Show( 
   string promptMsg,
   string defaultPromptMsg
)

パラメータ

promptMsg
メッセージボックスに表示するテキスト (String型)
defaultPromptMsg
入力欄の初期値 (String型)
解説
JavaScriptのpromptメソッドで表示される、入力が可能なメッセージボックスを表示します。
使用例
次のサンプルコードは、Showメソッドの使用方法を示します。
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs)
    GcMessageBox1.Show("ユーザー名を入力してください。", "user1")
End Sub
private void Button1_Click(object sender, System.EventArgs e)
{
    GcMessageBox1.Show("ユーザー名を入力してください。", "user1");
}
参照

GcMessageBox クラス
GcMessageBox メンバ
オーバーロード一覧

 

 


© 2005-2015 GrapeCity inc. All rights reserved.