2011-07-21から1日間の記事一覧

【ASP.NET】【VB】ファイルアップロードを行う(File up load)

コントロール構成 * Label : 1 * RadioButtonList : 1 (上書き許容・禁止を指定。プロパティ「Items」に、「permit」および「forbid」を指定) * FileUpload : 1 * Button : 1 サンプル Protected Sub Button1_Click(sender As Object, e As EventArgs) Handl…

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

Hello WorldをASP.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 & "!" '…