Public Class WebForm1 Inherits System.Web.UI.Page Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load ListBox1.Items.Add("Apple") ListBox1.Items.Add("Banana") ListBox1.Items.Add("Cat") ListBox1.Items.Add("Dog") ListBox1.SelectionMode = ListSelectionMode.Multiple End Sub Protected Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click Dim selectedCount As Integer For Each item As ListItem In ListBox1.Items If item.Selected Then selectedCount += 1 End If Next ClientScript.RegisterStartupScript(Me.GetType, "script1", $"<script>alert('{selectedCount}個選択されています。')</script>") End Sub End Class