jsp and javabean?
hcgui 2002-06-03 04:43:40 <jsp:useBean id="test" class="Test" scope="session">
<jsp:getProperty name="test" property="*">
<br>
test ok!
<br>
<%
Test.setTest("asdfasf?");
%>
<%=Test.getTest()%>
public class Test
{
String test ="asdfasf";
public void Test()
{
}
public void setTest(String test)
{
this.test = test;
}
public String getTest()
{
return test;
}
}
org.apache.jasper.compiler.ParseException: /hu/jsp.jsp(1,41) Unterminated
the server is tomcat4.0.1