ArrayList
Create an array the first time the page loads. Then you can set that array to display in a list control.
Sub Page_Load
if Not Page.IsPostBack then
dim mycountries=New ArrayList
mycountries.Add("Norway")
mycountries.Add("Sweden")
mycountries.Add("France")
mycountries.Add("Italy")
mycountries.TrimToSize()
end if
end sub
VB.NET vs. C#
Variables
Decisions
Built In Functions