Viewing source for recipe0305vb.aspx

<%@ Page Language="VB" %>
<%@ Register TagPrefix="AspNetCookbook" Namespace="AspNetCookbook" Assembly="RecipesVB" %>
<script language="vb" runat="server">
Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs)
	listControl.DataSource = New String() {"Test 1", "Test 2", "Test 3"}
	listControl.DataBind()
End Sub
</script>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<html>
	<head>
		<title>03 Custom Controls - 05 Creating a Databound Control</title>
	</head>
	<body>
		<AspNetCookbook:CustomBulletedList id="listControl" runat="server" />
	</body>
</html>