' フォーム全体を表すクラス
Public Class WebForm1
Inherits System.Web.UI.Page
' フォームに貼り付けたコントロールを表すクラス。
Protected WithEvents TextBox1 As System.Web.UI.WebControls.TextBox
Protected WithEvents TextBox2 As System.Web.UI.WebControls.TextBox
Protected WithEvents Label1 As System.Web.UI.WebControls.Label
Protected WithEvents Button1 As System.Web.UI.WebControls.Button
・・・
' ボタンがクリックされたときの処理
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) _
Handles Button1.Click
・・・
end sub
End Class
|