This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
Hi friends, I have here the following code and it wont compile complaining that _Stmp is declared blah blah.. can some one tell me why is it and are they getting the same error message! Thanks in advance. Nasser
<html> <head><title>Nasser's page creating table</title></head> <body> <% Person[] people = new Person[] {new Person("Nasser Aboobaker",30, "123-456-7890"), new Person("Jean Tayler", 23, "098-765-4321"), new Person("John K George", 27, "111-222-3333"), new Person("Maria Carmen", 23, "333-345-7890")}; request.setAttribute("people", people); %> <jsp:include page = "/servlet/trynasser.TableServlet" flush="true"> <jsp aram name = "data" value = "people" /> <jsp aram name = "tableOptions" value = "BORDER=4" /> <jsp aram name = "column" value = "name" /> <jsp aram name = "columnType" value = "data" /> <jsp aram name = "columnHeader" value = "Name" /> <jsp aram name = "column" value = "age" /> <jsp aram name = "columnType" value = "data" /> <jsp aram name = "columnHeader" value = "Age" /> <jsp aram name = "column" value = "getPhoneNumber" /> <jsp aram name = "columnType" value = "data" /> <jsp aram name = "columnHeader" value = "Phone #" /> </jsp:include> </body> </html> <%! public class Person{ public String name; public int age; protected String phoneNumber; public Person(String aName, int anAge, String aPhoneNumber){ name = aName; age=anAge; phoneNumber = aPhoneNumber; } public String getPhoneNumber(){ return phoneNumber; } } %>