Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim idcb As String
Dim iDia As String
Dim iMes As String
Dim tam As Integer
Dim nombtab As String
Dim Ctl As Control
For Each Ctl In Page.FindControl("Form1").Controls
If TypeOf Ctl Is CheckBox Then
If CType(Ctl, CheckBox).Checked Then
idcb = CType(Ctl, CheckBox).ID
iDia = Mid(idcb, 1, 2)
iMes = Mid(idcb, 3, 4)
If iMes = "01" Then
Label1.Text = iMes
Label2.Text = iDia
End If
End If
End If
Next
End Sub