Viewing source for recipe1504vb.aspx
<%@ Page Language="vb" %>
<script runat="server">
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs)
Dim input As String = "ASPAlliance.com"
Dim chArray As Char()
chArray = input.ToCharArray()
Dim I As Integer
For I = 0 To chArray.GetLength(0) - 1
Response.Write(chArray(I) & "<br>")
Next
End Sub
</script>