Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
Can you write a simple Action Class
Can you write a simple Action Class?
✍: Guest
Sure. Here is the code of Action Class that returns the ActionForward object:
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;br>
import org.apache.struts.action.Action;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
public class TestAction extends Action {
public ActionForward execute(
ActionMapping mapping,
ActionForm form,
HttpServletRequest request,
HttpServletResponse response) throws Exception {
return mapping.findForward(\"testAction\");
}
}
2007-12-19, 6309👍, 0💬
Popular Posts:
Would I use print "$a dollars" or "{$a} dollars" to print out the amount of dollars in this example?...
What Happens to Your Transactions When ERROR 1213 Occurred? - MySQL FAQs - Transaction Management: C...
What will be printed as the result of the operation below: main() { int x=20,y=35; x=y++ + x++; y= +...
What print out will the folloging code produce? main() { char *p1=“name”; char *p2; p2=(char*)malloc...
What is XSLT? XSLT is a rule based language used to transform XML documents in to other file formats...