Step number 3 on page 110, the initial web page would contain the line "You have selected: " unless a Page.IsPostBack is tested as in the following script block:
<script runat="server" language="
VB">
Sub Page_Load()
If Page.IsPostBack then
Dim msg As String = "You have selected: <br />"
If list1.Items(0).Selected Then msg = msg & list1.Items(0).text & "<br />"
If list1.Items(1).Selected Then msg = msg & list1.Items(1).text & "<br />"
If list1.Items(2).Selected Then msg = msg & list1.Items(2).text & "<br />"
Message.Text = msg
End If
End Sub
</script>
Would you agree?
Jeffrey A. Hock