Re: Servlet Call Jsp Question

2000-01-23 Thread Scott Stirling
Two tips: 1. When reporting a problem to a group like this, post your errors. Those mean a lot more than "my servlet fails." 2. Use the forward() method of RequestDispatcher, not callPage(). There's no such thing as callPage() in newer versions of the Servlet API. Scott Stirling West Newton,

Servlet Call Jsp Question

2000-01-23 Thread ()ZhangQi
Hi all, I have a simple servlet .In doPost Method , it called a jsp page, but failed in every time. Can you tell me what's wrong? thank you! The codes of servlet are metioned below. import java.io.*; import java.lang.*; import javax.servlet.*; import javax.servlet.http.*; import