【ASP.NET】【VB】ASP.NET / VB.NETで、Hello World

Hello WorldASP.NET / VB.NETで行う

コントロール構成

 * Label : 1
 * TextBox : 1
 * Button : 1

サンプル

Protected Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    Me.Label1.Text = "Hello, " & Me.TextBox1.Text & "!" 'この行追加
End Sub


サーバラウンドトリップ

 * イベントに際して、実行がサーバ/クライアント間を行き来すること。