Viewing source for recipe1804vb.aspx
<%@ Page Language="VB" %>
<script runat="server">
Sub Page_Load(sender As Object, e As System.EventArgs)
PrintParams("a", "b")
PrintParams("c", "d", "e", "f", "g")
End Sub 'Page_Load
Sub PrintParams(ParamArray list() As String)
Dim i As Integer
For i = 0 To list.Length - 1
Response.Write((list(i) + "<br>"))
Next i
End Sub 'PrintParams
</script>