Language Basics ASP.Net Tutorial

    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 

  
    Loops
    
      Sub Page_Load(s As Object, e As EventArgs)
        Dim counter As Integer = 0
        Do While counter <= 10
          messageLabel.Text = counter.ToString()
          counter += 1
        Loop
      End Sub