Posted on: 6/24/2015 9:17:52 PM | Views : 656

I am trying to call each value in a list from a class.  not sure how to do it.  for starters, I am learning how to do this from scratch and found a tutorial online and have been practicing.  I am getting an error.  can someone please help?
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="CallClass.aspx.vb" Inherits="CallClass" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> </head> <body> <form id="form1" runat="server"> <div> <asp:button runat="server" text="Call Class1" onclick="Unnamed1_Click" /> </div> </form> </body ...

Go to the complete details ...